wp = game:GetService("Workspace") HR = wp:WaitForChild("Holder"):Clone() HR.Parent = script.Parent
The script works but it completely ignores the Clone function, just moving Holder to script.parent, instead of cloning... what can i do to fix that?
local Holder = workspace:WaitForChild("Holder"):Clone() Holder.Parent = script.Parent
If this doesn't work then try this.
local Holder = workspace:WaitForChild("Holder") local NewHolder = Holder:Clone() NewHolder.Parent = Holder