Advertisement
TheUnsafeEnd

killbot nametag

May 1st, 2018
118
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 = "Corrupted Cyborg"
  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("Really Red").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. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement