Search
 
SCRIPT & CODE EXAMPLE
 

LUA

lua how to delete a part for roblox

local part = Instance.new("Part")
part.Name = "Hello, world"
part:Destroy()
-- Don't do this:
print(part.Name) --> "Hello, world"
-- Do this to prevent the above line from working:
part = nil
Comment

PREVIOUS NEXT
Code Example
Lua :: copy table lua 
Lua :: lua split 
Lua :: pcall lua 
Lua :: check if string is in string[] c# 
Lua :: how to make a number adding in roblox studio 
Lua :: Print when a player joined roblxo 
Lua :: gettable 
Lua :: difference between roblox and minecraft 
Lua :: how to add a damage decimal in roblox studio 
Lua :: how do i use the love errors module lua assist 
Lua :: Simple Roblox Lua Function 
Matlab :: matlab string to int 
Matlab :: how to read dat file in matlab 
Matlab :: matlab single and double 
Matlab :: how do i call a function inside another function in mat 
Basic :: cmd cd not working 
Basic :: dos/cmd equivalent to "head" 
Basic :: do you like messi in korean 
Elixir :: elixir list map key string to atom 
Elixir :: phoenix ecto query bindingess 
Scala :: scala string to boolean 
Scala :: scala anonymous function 
Actionscript :: silk road block-cypher 
Excel :: excel or formula 
Perl :: Perl list files and folders in a directory 
Pascal :: delay() in Pascal 
Powershell :: How to test HDD health in PowerShell 
Clojure :: algorithm to reverse a string clojure 
Assembly :: x86 assembly hello world 
Assembly :: IPL_DEPTH_LABEL 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =