Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local VoidScriptBuilderGui = Instance.new("ScreenGui")
  5. local Open = Instance.new("TextButton")
  6. local Main = Instance.new("Frame")
  7. local GodModeB = Instance.new("TextButton")
  8. local SpeedB = Instance.new("TextButton")
  9. local KillAllB = Instance.new("TextButton")
  10. --Properties:
  11. VoidScriptBuilderGui.Name = "VoidScriptBuilderGui"
  12. VoidScriptBuilderGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. Open.Name = "Open"
  15. Open.Parent = VoidScriptBuilderGui
  16. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  17. Open.BackgroundTransparency = 0.5
  18. Open.Position = UDim2.new(0, 0, 0.596658707, 0)
  19. Open.Size = UDim2.new(0, 85, 0, 36)
  20. Open.Font = Enum.Font.SciFi
  21. Open.Text = "Open"
  22. Open.TextColor3 = Color3.new(0, 0, 0.498039)
  23. Open.TextScaled = true
  24. Open.TextSize = 14
  25. Open.TextWrapped = true
  26. Open.MouseButton1Click:Connect(function()
  27. Main.Visible = true
  28. end)
  29.  
  30. Main.Name = "Main"
  31. Main.Parent = VoidScriptBuilderGui
  32. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  33. Main.BackgroundTransparency = 0.5
  34. Main.Position = UDim2.new(0.105459057, 0, 0.441527456, 0)
  35. Main.Size = UDim2.new(0, 164, 0, 144)
  36. Main.Visible = false
  37.  
  38. GodModeB.Name = "GodModeB"
  39. GodModeB.Parent = Main
  40. GodModeB.BackgroundColor3 = Color3.new(1, 1, 1)
  41. GodModeB.BackgroundTransparency = 1
  42. GodModeB.Size = UDim2.new(0, 86, 0, 50)
  43. GodModeB.Font = Enum.Font.SciFi
  44. GodModeB.Text = "God Mode"
  45. GodModeB.TextColor3 = Color3.new(0, 0, 0.498039)
  46. GodModeB.TextScaled = true
  47. GodModeB.TextSize = 14
  48. GodModeB.TextWrapped = true
  49. GodModeB.MouseButton1Click:Connect(function()
  50. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = 1000000000000
  51. game.Players.LocalPlayer.Character.Humanoid.Health = 1000000000000
  52. end)
  53.  
  54. SpeedB.Name = "SpeedB"
  55. SpeedB.Parent = Main
  56. SpeedB.BackgroundColor3 = Color3.new(1, 1, 1)
  57. SpeedB.BackgroundTransparency = 1
  58. SpeedB.Position = UDim2.new(0.47560972, 0, 0, 0)
  59. SpeedB.Size = UDim2.new(0, 86, 0, 50)
  60. SpeedB.Font = Enum.Font.SciFi
  61. SpeedB.Text = "Speed"
  62. SpeedB.TextColor3 = Color3.new(0, 0, 0.498039)
  63. SpeedB.TextScaled = true
  64. SpeedB.TextSize = 14
  65. SpeedB.TextWrapped = true
  66. SpeedB.MouseButton1Click:Connect(function()
  67. game.Players.LocalPlayer.Character.Humanoid.Speed = 80
  68. end)
  69.  
  70. KillAllB.Name = "KillAllB"
  71. KillAllB.Parent = Main
  72. KillAllB.BackgroundColor3 = Color3.new(1, 1, 1)
  73. KillAllB.BackgroundTransparency = 1
  74. KillAllB.Position = UDim2.new(0, 0, 0.354166657, 0)
  75. KillAllB.Size = UDim2.new(0, 86, 0, 50)
  76. KillAllB.Font = Enum.Font.SciFi
  77. KillAllB.Text = "Kill all"
  78. KillAllB.TextColor3 = Color3.new(0, 0, 0.498039)
  79. KillAllB.TextScaled = true
  80. KillAllB.TextSize = 14
  81. KillAllB.TextWrapped = true
  82. KillAllB.MouseButton1Click:Connect(function()
  83. for v,i in pairs(game.Players:GetChildren()) do
  84. i.Character.Humanoid.MaxHealth = 0
  85. end
  86. end)
  87. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement