Advertisement
TheUnsafeEnd

name tag FINAL w/ shadow head

Apr 29th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. wait(2)
  2.  
  3. player = game.Players.LocalPlayer
  4. chara = player.Character
  5. debby = game.Debris
  6. local Mouse = player:GetMouse()
  7. --------name tag---------
  8. local naeeym = Instance.new("BillboardGui",chara)
  9. naeeym.Size = UDim2.new(0,100,0,40)
  10. naeeym.StudsOffset = Vector3.new(0,2,0)
  11. naeeym.Adornee = chara.Head
  12. local tecks = Instance.new("TextLabel",naeeym)
  13. tecks.BackgroundTransparency = 1
  14. tecks.BorderSizePixel = 0
  15. tecks.Text = "The God of Corruption"
  16. tecks.Font = "Fantasy"
  17. tecks.FontSize = "Size24"
  18. tecks.TextStrokeTransparency = 0
  19. tecks.TextStrokeColor3 = Color3.new(0,0,0)
  20. tecks.TextColor3 = BrickColor.new("Eggplant").Color
  21. tecks.Size = UDim2.new(1,0,0.5,0)
  22. local htecks = Instance.new("TextLabel",naeeym)
  23. htecks.BackgroundTransparency = 1
  24. htecks.BorderSizePixel = 0
  25. -------health---------
  26. if chara.Humanoid.Health > 1 then
  27. wait(.1)
  28. Enamate()
  29. Enamate2()
  30. chara.Humanoid.MaxHealth = 9999999999999
  31. chara.Humanoid.Health = chara.Humanoid.Health + 999999999999
  32. htecks.Text = chara.Humanoid.Health.."/"..chara.Humanoid.MaxHealth
  33. bodp.Position = chara.Head.Position + Vector3.new(0,5,0)
  34. -------shadow head-------
  35. ShadowHead = New("Part",Character,"ShadowHead",{CanCollide = false,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(1.20000005, 0.600000024, 1),CFrame = CFrame.new(68.5999985, 0.700013041, 9.89999962, 1, 0, 0, 0, 1, 0, 0, 0, 1),Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  36. Mesh = New("SpecialMesh",ShadowHead,"Mesh",{Scale = Vector3.new(1.25999999, 1.5, 1.25999999),})
  37. Weld = New("Weld",ShadowHead,"mot",{Part0 = ShadowHead,Part1 = Character.Head,C1 = CFrame.new(0, 0.200000048, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement