Advertisement
exe123321

Untitled

Jan 22nd, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. -- Created By exe123321
  2.  
  3. local dragonballrage = Instance.new("ScreenGui")
  4. local gui = Instance.new("Frame")
  5. local name = Instance.new("TextLabel")
  6. local auto = Instance.new("TextButton")
  7. local credits = Instance.new("TextLabel")
  8.  
  9. -- Dragon ball rage script enjoy!
  10.  
  11. dragonballrage.Name = "dragonballrage"
  12. dragonballrage.Parent = game.CoreGui
  13.  
  14. gui.Name = "gui"
  15. gui.Parent = dragonballrage
  16. gui.Active = true
  17. gui.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  18. gui.BorderColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  19. gui.BorderSizePixel = 6
  20. gui.Draggable = true
  21. gui.Position = UDim2.new(0.846450627, 0, 0.726283073, 0)
  22. gui.Size = UDim2.new(0, 167, 0, 163)
  23.  
  24. name.Name = "name"
  25. name.Parent = gui
  26. name.BackgroundColor3 = Color3.new(0.494118, 1, 0.596078)
  27. name.Position = UDim2.new(0, 0, 0.00613496918, 0)
  28. name.Size = UDim2.new(0, 167, 0, 28)
  29. name.Font = Enum.Font.SourceSans
  30. name.Text = "D R A G O N B A L L R A G E"
  31. name.TextSize = 14
  32.  
  33. auto.Name = "auto"
  34. auto.Parent = gui
  35. auto.BackgroundColor3 = Color3.new(0.529412, 1, 1)
  36. auto.Position = UDim2.new(0.240234911, 0, 0.395705491, 0)
  37. auto.Size = UDim2.new(0, 87, 0, 42)
  38. auto.Font = Enum.Font.SourceSans
  39. auto.Text = "AutoAfk Trainer"
  40. auto.TextSize = 14
  41.  
  42.  
  43. local plr = game:GetService("Players").LocalPlayer
  44. while true do
  45. wait(0.01)
  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. spawn(function()
  50. game.ReplicatedStorage.Remotes.Training.Combat:InvokeServer(game.Players.LocalPlayer.Stats, {Humanoid = game.Players.LocalPlayer.Character.Humanoid})
  51. end)
  52. spawn(function()
  53. game.ReplicatedStorage.Remotes.Training.Defense:InvokeServer(plr.Stats, plr.Status, plr.Character.Humanoid, plr.Character.RightHand)
  54. end)
  55. game.ReplicatedStorage.Remotes.Training.Agility:FireServer(game.Players.LocalPlayer.Stats)
  56. end
  57.  
  58. credits.Name = "credits"
  59. credits.Parent = gui
  60. credits.BackgroundColor3 = Color3.new(1, 0.627451, 0.513726)
  61. credits.Position = UDim2.new(0, 0, 0.932515323, 0)
  62. credits.Size = UDim2.new(0, 168, 0, 11)
  63. credits.Font = Enum.Font.SourceSans
  64. credits.Text = "Small Gui made by Henryhulk"
  65. credits.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement