of     1   

Spathi
#215368949Wednesday, April 26, 2017 10:18 PM GMT

I want to clone a name tag with their name on it, into their players head
caca50
#215369113Wednesday, April 26, 2017 10:21 PM GMT

Is the name tag a part, a gui, what? To answer your question: "clone something into a player's head" local thing = workspace.Thing thing:Clone().Parent = head
Spathi
#215369196Wednesday, April 26, 2017 10:22 PM GMT

Thanks for the "Help"
Spathi
#215369210Wednesday, April 26, 2017 10:23 PM GMT

I wanna know how to access the local players character
archisaurus
#215369247Wednesday, April 26, 2017 10:23 PM GMT

in a localscript do game.Players.LocalPlayer.Character lol
caca50
#215369287Wednesday, April 26, 2017 10:24 PM GMT

If you were more specific, I could've provided decent help
Spathi
#215369305Wednesday, April 26, 2017 10:24 PM GMT

Ah so it has to be a local script, alright
Spathi
#215369892Wednesday, April 26, 2017 10:35 PM GMT

so I clone the local script into the player, but it won't execute now
LaeMVP
#215370209Wednesday, April 26, 2017 10:41 PM GMT

Are you using a billboard gui? If so clone that into the character's head and set it's adornee to the head as well, is that what you were looking for, or am I completely wrong?
Spathi
#215370473Wednesday, April 26, 2017 10:45 PM GMT

I'm using a part, and I'm having trouble even cloning anything into the player
Spathi
#215370488Wednesday, April 26, 2017 10:46 PM GMT

I'm talking physical player too
LaeMVP
#215370724Wednesday, April 26, 2017 10:51 PM GMT

local Part = Instance.new("Part",game.Players.LocalPlayer.Character.Head) Part.Anchored = false Part.Name = "ThisWontWorkWithFE"

    of     1