Hello, As said in the title, how can I create a script clone in Lighting from the Workspace? Do I need to link objets with it? Thank you for your help.
local clone = workspace.object:Clone() -- replace object with your object name and also you can name the variable whatever you want. clone.Parent = game.Lighting
Basically we just made a variable of the clone and then we set the parent of the clone to be in Lighting.