So basically i want to move a part and name it with the players name but once i move it to workspace only i can see my part, is there a way i can prevent this?
wait(2) local Pos = game.Workspace.Spawn.Position local Player = script.Parent:Clone() local NM = script.Parent.Parent.NM.Value Player.Name = NM Player.Parent = game.Workspace.Players Player.Position = Pos script.Parent.Parent.Parent.Controls.ControlMain.Disabled = false
There's no way.
If you want the part to be replicated through all clients, it'll need to be server-side.
You can use RemoteEvents and RemoteFunctions to achieve this, but there is no way you can replicate it client-side.