1 | wp = game:GetService( "Workspace" ) |
2 | HR = wp:WaitForChild( "Holder" ):Clone() |
3 | 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?
1 | local Holder = workspace:WaitForChild( "Holder" ):Clone() |
2 | Holder.Parent = script.Parent |
If this doesn’t work then try this.
1 | local Holder = workspace:WaitForChild( "Holder" ) |
2 | local NewHolder = Holder:Clone() |
3 | NewHolder.Parent = Holder |