Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local plr = game:GetService("Players").LocalPlayer
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TrainKi = Instance.new("TextButton")
- local TrainAg = Instance.new("TextButton")
- local TrainAt = Instance.new("TextButton")
- local TrainDe = Instance.new("TextButton")
- -- Properties
- ScreenGui.Parent = plr.PlayerGui
- ScreenGui.ResetOnSpawn = false
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
- Frame.Draggable = true
- Frame.Selectable = true
- Frame.Position = UDim2.new(0.338909566, 0, 0.227777779, 0)
- Frame.Size = UDim2.new(0, 260, 0, 221)
- Frame.Active = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel.Size = UDim2.new(0, 260, 0, 37)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.FontSize = Enum.FontSize.Size24
- TextLabel.Text = "DBZ Rage GUI: Updated"
- TextLabel.TextColor3 = Color3.new(1, 0, 0)
- TextLabel.TextSize = 20
- TrainKi.Name = "TrainKi"
- TrainKi.Parent = Frame
- TrainKi.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
- TrainKi.Position = UDim2.new(0.0384615399, 0, 0.26696834, 0)
- TrainKi.Size = UDim2.new(0, 110, 0, 41)
- TrainKi.Font = Enum.Font.SourceSans
- TrainKi.FontSize = Enum.FontSize.Size14
- TrainKi.Text = "Train Ki"
- TrainKi.TextSize = 14
- TrainKi.MouseButton1Click:connect(function()
- for i=1, 1000 do --Increase or Decrease
- spawn(function()
- game.ReplicatedStorage.Remotes.Training.Blast:InvokeServer({Energy = {Value = 9999999}}, game.Players.LocalPlayer.Stats, game.Players.LocalPlayer.Character.HumanoidRootPart, game.Players.LocalPlayer.Character.RightHand, game.Players.LocalPlayer.Character)
- end)
- end
- end)
- TrainAg.Name = "TrainAg"
- TrainAg.Parent = Frame
- TrainAg.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
- TrainAg.Position = UDim2.new(0.523076952, 0, 0.26696834, 0)
- TrainAg.Size = UDim2.new(0, 110, 0, 41)
- TrainAg.Font = Enum.Font.SourceSans
- TrainAg.FontSize = Enum.FontSize.Size14
- TrainAg.Text = "Train Agility"
- TrainAg.TextSize = 14
- TrainAg.MouseButton1Click:connect(function()
- for i=1, 10000 do --Increase or Decrease
- game.ReplicatedStorage.Remotes.Training.Agility:FireServer(game.Players.LocalPlayer.Stats)
- end
- end)
- TrainAt.Name = "TrainAt"
- TrainAt.Parent = Frame
- TrainAt.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
- TrainAt.Position = UDim2.new(0.038461566, 0, 0.542986453, 0)
- TrainAt.Size = UDim2.new(0, 110, 0, 41)
- TrainAt.Font = Enum.Font.SourceSans
- TrainAt.FontSize = Enum.FontSize.Size14
- TrainAt.Text = "Train Attack"
- TrainAt.TextSize = 14
- TrainAt.MouseButton1Click:connect(function()
- for i=1, 2000 do --Increase or Decrease
- spawn(function()
- wait()
- game.ReplicatedStorage.Remotes.Training.Combat:InvokeServer(game.Players.LocalPlayer.Stats, {Humanoid = game.Players.LocalPlayer.Character.Humanoid})
- end)
- end
- end)
- TrainDe.Name = "TrainDe"
- TrainDe.Parent = Frame
- TrainDe.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
- TrainDe.Position = UDim2.new(0.523076952, 0, 0.542986453, 0)
- TrainDe.Size = UDim2.new(0, 110, 0, 41)
- TrainDe.Font = Enum.Font.SourceSans
- TrainDe.FontSize = Enum.FontSize.Size14
- TrainDe.Text = "Train Defense"
- TrainDe.TextSize = 14
- TrainDe.MouseButton1Click:connect(function()
- for i=1, 5000 do
- spawn(function()
- game.ReplicatedStorage.Remotes.Training.Defense:InvokeServer(plr.Stats, plr.Status, plr.Character.Humanoid, plr.Character.RightHand)
- end)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement