Advertisement
TheUnsafeEnd

name tag

Apr 29th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  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 = "Lunarine the Moon Rabbit"
  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("Baby blue").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. htecks.Text = chara.Humanoid.Health.."/"..chara.Humanoid.MaxHealth
  26. htecks.Font = "Fantasy"
  27. htecks.FontSize = "Size24"
  28. htecks.TextStrokeTransparency = 0
  29. htecks.TextStrokeColor3 = Color3.new(0,0,0)
  30. htecks.TextColor3 = BrickColor.new("Baby blue").Color
  31. htecks.Size = UDim2.new(1,0,0.5,0)
  32. htecks.Position = UDim2.new(0,0,.5,0)
  33. -------health---------
  34. if chara.Humanoid.Health > 1 then
  35. wait(.1)
  36. Enamate()
  37. Enamate2()
  38. chara.Humanoid.MaxHealth = 9999999999999
  39. chara.Humanoid.Health = chara.Humanoid.Health + 999999999999
  40. htecks.Text = chara.Humanoid.Health.."/"..chara.Humanoid.MaxHealth
  41. bodp.Position = chara.Head.Position + Vector3.new(0,5,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement