Advertisement
Guest User

dbz

a guest
Apr 19th, 2019
6,798
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 0 0
  1. ---MAKE SURE TO SUBSCRIBE TO VOICELESS!---
  2.  
  3. -- Objects
  4. local plr = game:GetService("Players").LocalPlayer
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local TrainKi = Instance.new("TextButton")
  9. local TrainAg = Instance.new("TextButton")
  10. local TrainAt = Instance.new("TextButton")
  11. local TrainDe = Instance.new("TextButton")
  12.  
  13. -- Properties
  14.  
  15. ScreenGui.Parent = plr.PlayerGui
  16. ScreenGui.ResetOnSpawn = false
  17.  
  18. Frame.Parent = ScreenGui
  19. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  20. Frame.Draggable = true
  21. Frame.Selectable = true
  22. Frame.Position = UDim2.new(0.338909566, 0, 0.227777779, 0)
  23. Frame.Size = UDim2.new(0, 260, 0, 190)
  24. Frame.Active = true
  25.  
  26. TextLabel.Parent = Frame
  27. TextLabel.BackgroundColor3 = Color3.new(2, 2, 2)
  28. TextLabel.Size = UDim2.new(0, 260, 0, 37)
  29. TextLabel.Font = Enum.Font.SourceSans
  30. TextLabel.FontSize = Enum.FontSize.Size24
  31. TextLabel.Text = "DBZ Rage GUI"
  32. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  33. TextLabel.TextSize = 20
  34.  
  35. TrainKi.Name = "Press To Train Ki"
  36. TrainKi.Parent = Frame
  37. TrainKi.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  38. TrainKi.Position = UDim2.new(0.0384615399, 0, 0.26696834, 0)
  39. TrainKi.Size = UDim2.new(0, 110, 0, 41)
  40. TrainKi.Font = Enum.Font.SourceSans
  41. TrainKi.FontSize = Enum.FontSize.Size14
  42. TrainKi.Text = "Press To Train Ki"
  43. TrainKi.TextSize = 14
  44. TrainKi.MouseButton1Click:connect(function()
  45. for i=1, 2000 do --Increase or Decrease
  46. spawn(function()
  47. game.ReplicatedStorage.Remotes.Training.Blast:InvokeServer({Energy = {Value = 999999999999}}, game.Players.LocalPlayer.Stats, game.Players.LocalPlayer.Character.HumanoidRootPart, game.Players.LocalPlayer.Character.RightHand, game.Players.LocalPlayer.Character)
  48. end)
  49. end
  50. end)
  51. TrainAg.Name = "Max Agility"
  52. TrainAg.Parent = Frame
  53. TrainAg.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  54. TrainAg.Position = UDim2.new(0.523076952, 0, 0.26696834, 0)
  55. TrainAg.Size = UDim2.new(0, 110, 0, 41)
  56. TrainAg.Font = Enum.Font.SourceSans
  57. TrainAg.FontSize = Enum.FontSize.Size14
  58. TrainAg.Text = "Max Agility"
  59. TrainAg.TextSize = 14
  60. TrainAg.MouseButton1Click:connect(function()
  61. for i=1, 10000 do --Increase or Decrease
  62. game.ReplicatedStorage.Remotes.Training.Agility:FireServer(game.Players.LocalPlayer.Stats)
  63. end
  64. end)
  65.  
  66. TrainAt.Name = "Afk Attack to train attack"
  67. TrainAt.Parent = Frame
  68. TrainAt.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  69. TrainAt.Position = UDim2.new(0.038461566, 0, 0.542986453, 0)
  70. TrainAt.Size = UDim2.new(0, 110, 0, 41)
  71. TrainAt.Font = Enum.Font.SourceSans
  72. TrainAt.FontSize = Enum.FontSize.Size14
  73. TrainAt.Text = "Afk Attack to train attack"
  74. TrainAt.TextSize = 14
  75. TrainAt.MouseButton1Click:connect(function()
  76. for i=1, 3000 do --Increase or Decrease
  77. spawn(function()
  78. wait(0.1)
  79. game.ReplicatedStorage.Remotes.Training.Combat:InvokeServer(game.Players.LocalPlayer.Stats, {Humanoid = game.Players.LocalPlayer.Character.Humanoid})
  80. end)
  81. end
  82. end)
  83.  
  84.  
  85. TrainDe.Name = "Afk Training Def"
  86. TrainDe.Parent = Frame
  87. TrainDe.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  88. TrainDe.Position = UDim2.new(0.523076952, 0, 0.542986453, 0)
  89. TrainDe.Size = UDim2.new(0, 110, 0, 41)
  90. TrainDe.Font = Enum.Font.SourceSans
  91. TrainDe.FontSize = Enum.FontSize.Size14
  92. TrainDe.Text = "Afk Training Def"
  93. TrainDe.TextSize = 14
  94. TrainDe.MouseButton1Click:connect(function()
  95. for i=1, 5000 do
  96. spawn(function()
  97. game.ReplicatedStorage.Remotes.Training.Defense:InvokeServer(plr.Stats, plr.Status, plr.Character.Humanoid, plr.Character.RightHand)
  98. end)
  99. end
  100. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement