I need clone a object into a local player im stuck
What I Have
local player = game.Players.LocalPlayer local part = Instance.new("Part") part.Parent = player local clone = game.serverstorage.Item:Clone() print(clone.Parent)
I need item get clone into the localplayer in the game
You cant put items into the player i think you want the character so here ya go.
local player = game.Players.LocalPlayer.Character--gets the players character local part = Instance.new("Part") part.Parent = player local clone = game.ServerStorage.Item:Clone() clone.Parent = player--idk if ya want the clone to be parented to the player print(clone.Parent)
Also you are putting a part into the player not the cloned object what even is the point of that.
If this worked then please accept this answer