Okay so I get how to use game.Lighting as storage but I don't know how to use clone(). Please explain how to use clone().
Clone()ing is like copying and pasting, I'll show you an example
01 | local buttonPart = script.Parent |
02 |
03 | buttonPart.Touched:connect( function (hit) --Waits for the button part to be touched |
04 | if hit.Parent:FindFirstChild( "Humanoid" ) then --If a player hit it, then continue |
05 | local clonePart = game.Lighting.Part:Clone() --Cloning the part |
06 | clonePart.Parent = Workspace --Placing the part in the Workspace |
07 | wait( 5 ) --Waiting to destroy the part |
08 | clonePart:remove() --Destroying the part |
09 | end |
10 | end ) |
And you can modify all of the proprieties of the part like you would normally with a script, just make sure you put clonePart before you change a property.
Ill give you an example:
1 | game.Lighting.Minigame 1 :clone().Parent = game.Workspace |
IN order for this to work, you have to place the Model or Part in Lighting in order for a script like this to work. P.S. It has to be EXACTLY named the same in the script and in Lighting for it to work.