Advertisement
Guest User

Untitled

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