Elixcore

Dragon Ball Rage GUI

Aug 6th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. -- Credits to: Alex/Elixcore For Making The Gui
  2. -- Credits to: Gabriel Tenma For Making The Scripts
  3.  
  4.  
  5.  
  6. -- Objects
  7.  
  8. local DBR = Instance.new("ScreenGui")
  9. local Background = Instance.new("Frame")
  10. local Attack = Instance.new("TextButton")
  11. local Agility = Instance.new("TextButton")
  12. local Ki = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. DBR.Name = "DBR"
  17. DBR.Parent = game.Players.LocalPlayer.PlayerGui
  18.  
  19. Background.Name = "Background"
  20. Background.Parent = DBR
  21. Background.Active = true
  22. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  23. Background.BorderColor3 = Color3.new(1, 1, 1)
  24. Background.Draggable = true
  25. Background.Position = UDim2.new(0, 950, 0, 10)
  26. Background.Selectable = true
  27. Background.Size = UDim2.new(0, 300, 0, 200)
  28.  
  29. Attack.Name = "Attack"
  30. Attack.Parent = Background
  31. Attack.BackgroundColor3 = Color3.new(1, 0, 0)
  32. Attack.BorderColor3 = Color3.new(1, 0, 0)
  33. Attack.Size = UDim2.new(0, 200, 0, 50)
  34. Attack.Font = Enum.Font.SciFi
  35. Attack.FontSize = Enum.FontSize.Size32
  36. Attack.Text = "Attack"
  37. Attack.TextColor3 = Color3.new(0, 0, 0)
  38. Attack.TextSize = 30
  39. game.Players.LocalPlayer.PlayerGui.DBR.Background.Attack.MouseButton1Click:connect(function()
  40. for i=1, 2000 do --Increase or Decrease
  41. spawn(function()
  42. wait()
  43. game.ReplicatedStorage.Remotes.Training.Combat:InvokeServer(game.Players.LocalPlayer.Stats, {Humanoid = game.Players.LocalPlayer.Character.Humanoid})
  44. end)
  45. end
  46. end)
  47.  
  48. Agility.Name = "Agility"
  49. Agility.Parent = Background
  50. Agility.BackgroundColor3 = Color3.new(1, 0, 0)
  51. Agility.BorderColor3 = Color3.new(1, 0, 0)
  52. Agility.Position = UDim2.new(0, 0, 0, 76)
  53. Agility.Size = UDim2.new(0, 200, 0, 50)
  54. Agility.Font = Enum.Font.SciFi
  55. Agility.FontSize = Enum.FontSize.Size32
  56. Agility.Text = "Agility"
  57. Agility.TextColor3 = Color3.new(0, 0, 0)
  58. Agility.TextSize = 30
  59. game.Players.LocalPlayer.PlayerGui.DBR.Background.Agility.MouseButton1Click:connect(function()
  60. for i=1, 10000 do --Increase or Decrease
  61. game.ReplicatedStorage.Remotes.Training.Agility:FireServer(game.Players.LocalPlayer.Stats)
  62. end
  63. end)
  64.  
  65. Ki.Name = "Ki"
  66. Ki.Parent = Background
  67. Ki.BackgroundColor3 = Color3.new(1, 0, 0)
  68. Ki.BorderColor3 = Color3.new(1, 0, 0)
  69. Ki.Position = UDim2.new(0, 0, 0, 150)
  70. Ki.Size = UDim2.new(0, 200, 0, 50)
  71. Ki.Font = Enum.Font.SciFi
  72. Ki.FontSize = Enum.FontSize.Size32
  73. Ki.Text = "Ki"
  74. Ki.TextColor3 = Color3.new(0, 0, 0)
  75. Ki.TextSize = 30
  76. game.Players.LocalPlayer.PlayerGui.DBR.Background.Ki.MouseButton1Click:connect(function()
  77. for i=1, 1000 do --Increase or Decrease
  78. spawn(function()
  79. game.ReplicatedStorage.Remotes.Training.Blast:InvokeServer({Energy = {Value = 999999}}, game.Players.LocalPlayer.Stats, game.Players.LocalPlayer.Character.HumanoidRootPart, game.Players.LocalPlayer.Character.RightHand, game.Players.LocalPlayer.Character)
  80. end)
  81. end
  82. end)
Add Comment
Please, Sign In to add comment