of     1   

maxomega3
#140788394Friday, July 18, 2014 11:29 PM GMT

script.Parent.MouseButton1Down:connect (function () local head = game.Players.LocalPlayer.Character.Head local fake = head:Clone () fake.Parent = head.Parent local weld = Instance.new ("Weld", head) weld.Part0 = head weld.Part1 = fake head.Transparency = 1 end) Whenever the function fires, my character dies.
smiley599
#140789020Friday, July 18, 2014 11:34 PM GMT

player.NameDisplayDistance=0
maxomega3
#140789130Friday, July 18, 2014 11:35 PM GMT

Player? Not Character? Not even Humanoid? gg
smiley599
#140789307Friday, July 18, 2014 11:36 PM GMT

script.Parent.MouseButton1Down:connect(function () local head = game.Players.LocalPlayer head.NameDisplayDistance=0 end)
Tunicus
#140789359Friday, July 18, 2014 11:36 PM GMT

You welded the real head to the fake head.

    of     1