Advertisement
Guest User

Dragon Ball Ultimate Warrior

a guest
Apr 18th, 2019
2,080
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. -- Instances
  2.  
  3. local DBUWGUI = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Close = Instance.new("TextButton")
  6. local Ki = Instance.new("TextButton")
  7. local Atk_Agi = Instance.new("TextButton")
  8. local Made = Instance.new("TextLabel")
  9.  
  10. -- Properties
  11.  
  12. DBUWGUI.Name = "DBUWGUI"
  13. DBUWGUI.Parent = game.CoreGui
  14.  
  15. Main.Name = "Main"
  16. Main.Parent = DBUWGUI
  17. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  18. Main.BackgroundTransparency = 0.3
  19. Main.BorderSizePixel = 3
  20. Main.Position = UDim2.new(0.036, 0, 0.357, 0)
  21. Main.Size = UDim2.new(0, 241, 0, 195)
  22. Main.Draggable = true
  23. Main.Active = true
  24.  
  25. Close.Name = "Close"
  26. Close.Parent = Main
  27. Close.BackgroundColor3 = Color3.new(0, 255, 255)
  28. Close.BackgroundTransparency = 0.3
  29. Close.Font = Enum.Font.Legacy
  30. Close.Text = "X"
  31. Close.TextColor3 = Color3.new(0, 0, 0)
  32. Close.TextSize = 14
  33. Close.Position = UDim2.new(0.847, 0, -0.003, 0)
  34. Close.Size = UDim2.new(0, 36, 0, 34)
  35.  
  36. Ki.Name = "Ki"
  37. Ki.Parent = Main
  38. Ki.BackgroundColor3 = Color3.new(58, 255, 242)
  39. Ki.BackgroundTransparency = 0.3
  40. Ki.Font = Enum.Font.SciFi
  41. Ki.Text = "Ki Training"
  42. Ki.TextColor3 = Color3.new(0, 0, 0)
  43. Ki.TextSize = 18
  44. Ki.Position = UDim2.new(0.083, 0, 0.238, 0)
  45. Ki.Size = UDim2.new(0, 200, 0, 50)
  46.  
  47. Atk_Agi.Name = "Attack/Agility"
  48. Atk_Agi.Parent = Main
  49. Atk_Agi.BackgroundColor3 = Color3.new(58, 255, 242)
  50. Atk_Agi.BackgroundTransparency = 0.3
  51. Atk_Agi.Font = Enum.Font.SciFi
  52. Atk_Agi.Text = "Attack/Agility Training"
  53. Atk_Agi.TextColor3 = Color3.new(0, 0, 0)
  54. Atk_Agi.TextSize = 18
  55. Atk_Agi.Position = UDim2.new(0.083, 0, 0.556, 0)
  56. Atk_Agi.Size = UDim2.new(0, 200, 0, 50)
  57.  
  58. Made.Name = "MadeBy"
  59. Made.Parent = Main
  60. Made.BackgroundColor3 = Color3.new(0, 0, 0)
  61. Made.BackgroundTransparency = 1
  62. Made.Font = Enum.Font.SourceSans
  63. Made.Text = "Made by xKuroko"
  64. Made.TextColor3 = Color3.new(0, 255, 255)
  65. Made.TextSize = 12
  66. Made.Position = UDim2.new(0.315, 0, 0.913, 0)
  67. Made.Size = UDim2.new(0, 88, 0, 11)
  68.  
  69. -- Scripts
  70.  
  71. Ki.MouseButton1Click:connect(function()
  72. local lp = game.Players.LocalPlayer
  73. local lpc = lp.Character
  74.  
  75. for i = 1, 1000 do -- change the 1000 to how often you want to repeat
  76. game.ReplicatedStorage.Remotes.Training.Blast:InvokeServer({Energy = {Value = 1000}}, lp.Stats, lpc.HumanoidRootPart, lpc.RightHand, lpc)
  77. end)
  78.  
  79. Atk_Agi.MouseButton1Click:connect(function()
  80. local lp = game.Players.LocalPlayer
  81. local lpc = lp.Character
  82. local ltable = {
  83. Character = lpc;
  84. Humanoid = lpc.Humanoid;
  85. LeftFoot = lpc.LeftFoot;
  86. LeftHand = lpc.LeftHand;
  87. LeftLowerArm = lpc.LeftLowerArm;
  88. LeftLowerLeg = lpc.LeftLowerLeg;
  89. LeftUpperArm = lpc.LeftUpperArm;
  90. LeftUpperLeg = lpc.LeftUpperLeg;
  91. RightFoot = lpc.RightFoot;
  92. RightHand = lpc.RightHand;
  93. RightLowerArm = lpc.RightLowerArm;
  94. RightLowerLeg = lpc.RightLowerLeg;
  95. RightUpperArm = lpc.RightUpperArm;
  96. RightUpperLeg = lpc.RightLowerLeg
  97. }
  98.  
  99. for i = 1, 1000 do -- change the 1000 to how often you want to repeat
  100. game.ReplicatedStorage.Remotes.Training.Combat:InvokeServer(lp.Stats, ltable)
  101. end)
  102.  
  103. CloseGUI.MouseButton1Click:connect(function()
  104. game.CoreGui.DBUWGUI:Destroy()
  105. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement