Advertisement
killerbrenden

A God

Feb 19th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. -- Billboard GUI
  2. local BG = Instance.new("BillboardGui")
  3. BG.Name = "Title"
  4. BG.Parent = game.Players.LocalPlayer.Character.Head
  5. BG.Size = UDim2.new(0,500,0,400)
  6. BG.StudsOffset = Vector3.new(0,24,0)
  7. -- TextLabel
  8. local TL = Instance.new("TextLabel")
  9. TL.Name = "Namer"
  10. TL.BackgroundTransparency = 1
  11. TL.BorderSizePixel = 2
  12. TL.BackgroundColor3 = Color3.new(240,10,5)
  13. TL.BorderColor3 = Color3.new(250,20,15)
  14. TL.TextScaled = true
  15. TL.TextWrapped = true
  16. TL.Font = Enum.Font.Antique
  17. TL.Parent = BG
  18. TL.Size = UDim2.new(1,0,1,0)
  19. TL.TextStrokeTransparency = 0.1
  20. TL.TextStrokeColor3 = Color3.new(255,255,255)
  21. --Body Settings
  22. TL.Text = "A God"
  23. local Player = game.Players.LocalPlayer
  24. local Character = Player.Character
  25. local Humanoid = Character:WaitForChild("Humanoid",5)
  26. for i,Child in pairs(Humanoid:GetChildren()) do
  27. if Child:IsA("NumberValue") then
  28. if Child.Name == "BodyDepthScale" then
  29. Child.Value = 10
  30. elseif Child.Name == "HeadScale" then
  31. Child.Value = 10
  32. elseif Child.Name == "BodyHeightScale" then
  33. Child.Value = 10
  34. elseif Child.Name == "BodyWidthScale" then
  35. Child.Value = 10
  36. end
  37. end
  38. end
  39. game.Players.LocalPlayer.Character.Humanoid.Health = 2147483647
  40. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 250
  41. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 300
  42.  
  43. game.Players.LocalPlayer.Character.LeftFoot.Touched:connect(function(Hit)
  44. local P = Hit.Parent
  45. local H = P.Humanoid
  46. H.Health = 0
  47. end)
  48.  
  49. game.Players.LocalPlayer.Character.RightFoot.Touched:connect(function(Hit)
  50. local P = Hit.Parent
  51. local H = P.Humanoid
  52. H.Health = 0
  53. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement