Advertisement
DrakerMaker

Dead Serious

May 27th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2.  
  3. local avatar = player.Character
  4.  
  5. local sign = Instance.new("BillboardGui")
  6.  
  7. sign.Adornee = avatar.Head
  8.  
  9. sign.Parent = avatar.Head
  10.  
  11.  
  12. sign.StudsOffset=Vector3.new(0.5,5,0)
  13. sign.Size=UDim2.new(3,0,3,0)
  14. text=Instance.new("TextLabel")
  15. text.Text= "Dead Serious"
  16. text.TextScaled = true
  17. text.TextColor3 = Color3.new(255, 0, 0)
  18. text.Size=UDim2.new(1,0,1,0)
  19. text.Position=UDim2.new(-0.125,0,-0.25,0)
  20. text.BackgroundTransparency = 1
  21. text.Parent=sign
  22.  
  23.  
  24. avatar.Humanoid.MaxHealth = 0 -- This makes your health bar look like your dead.
  25. --WARNING: If someone hits you, you will die fast.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement