Advertisement
Guest User

Dragon Blox: X

a guest
Jun 9th, 2019
12,093
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.55 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local run_service = game:GetService("RunService")
  6. local Frame = Instance.new("Frame")
  7. local DragonBallX = Instance.new("TextLabel")
  8. local CTrain = Instance.new("TextButton")
  9. local STrain = Instance.new("TextButton")
  10. local KTrain = Instance.new("TextButton")
  11. local TextBox = Instance.new("TextBox")
  12. --Properties:
  13. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14. ScreenGui.ResetOnSpawn = false
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.new(0.176471, 0.172549, 0.172549)
  18. Frame.BackgroundTransparency = 0.5
  19. Frame.Position = UDim2.new(0.899939954, 0, 0.519448936, 0)
  20. Frame.Size = UDim2.new(0, 134, 0, 161)
  21.  
  22. DragonBallX.Name = "Dragon Ball X"
  23. DragonBallX.Parent = ScreenGui
  24. DragonBallX.BackgroundColor3 = Color3.new(1, 0, 0.384314)
  25. DragonBallX.BorderColor3 = Color3.new(1, 0, 0.384314)
  26. DragonBallX.Position = UDim2.new(0.899939954, 0, 0.518427551, 0)
  27. DragonBallX.Size = UDim2.new(0, 134, 0, 29)
  28. DragonBallX.Font = Enum.Font.Arcade
  29. DragonBallX.Text = "Dragon Ball X"
  30. DragonBallX.TextColor3 = Color3.new(0, 0, 0)
  31. DragonBallX.TextSize = 14
  32. DragonBallX.TextWrapped = true
  33.  
  34. CTrain.Name = "CTrain"
  35. CTrain.Parent = ScreenGui
  36. CTrain.BackgroundColor3 = Color3.new(1, 0, 0.384314)
  37. CTrain.BorderColor3 = Color3.new(1, 0, 0.384314)
  38. CTrain.Position = UDim2.new(0.915302694, 0, 0.581081092, 0)
  39. CTrain.Size = UDim2.new(0, 75, 0, 18)
  40. CTrain.AutoButtonColor = false
  41. CTrain.Font = Enum.Font.SourceSans
  42. CTrain.Text = "Combat Train"
  43. CTrain.TextColor3 = Color3.new(0, 0, 0)
  44. CTrain.TextSize = 14
  45. CTrain.TextWrapped = true
  46.  
  47. STrain.Name = "STrain"
  48. STrain.Parent = ScreenGui
  49. STrain.BackgroundColor3 = Color3.new(1, 0, 0.384314)
  50. STrain.BorderColor3 = Color3.new(1, 0, 0.384314)
  51. STrain.Position = UDim2.new(0.915302694, 0, 0.652334154, 0)
  52. STrain.Size = UDim2.new(0, 75, 0, 18)
  53. STrain.AutoButtonColor = false
  54. STrain.Font = Enum.Font.SourceSans
  55. STrain.Text = "Speed Train"
  56. STrain.TextColor3 = Color3.new(0, 0, 0)
  57. STrain.TextSize = 14
  58. STrain.TextWrapped = true
  59.  
  60. KTrain.Name = "KTrain"
  61. KTrain.Parent = ScreenGui
  62. KTrain.BackgroundColor3 = Color3.new(1, 0, 0.384314)
  63. KTrain.BorderColor3 = Color3.new(1, 0, 0.384314)
  64. KTrain.Position = UDim2.new(0.915302694, 0, 0.616707683, 0)
  65. KTrain.Size = UDim2.new(0, 75, 0, 18)
  66. KTrain.AutoButtonColor = false
  67. KTrain.Modal = true
  68. KTrain.Font = Enum.Font.SourceSans
  69. KTrain.Text = "Ki Train"
  70. KTrain.TextColor3 = Color3.new(0, 0, 0)
  71. KTrain.TextSize = 14
  72. KTrain.TextWrapped = true
  73.  
  74. TextBox.Parent = ScreenGui
  75. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  76. TextBox.BackgroundTransparency = 1
  77. TextBox.Position = UDim2.new(0.875798464, 0, 0.674447179, 0)
  78. TextBox.Selectable = false
  79. TextBox.Size = UDim2.new(0, 200, 0, 35)
  80. TextBox.ClearTextOnFocus = false
  81. TextBox.Font = Enum.Font.SourceSans
  82. TextBox.Text = ""
  83. TextBox.TextColor3 = Color3.new(1, 1, 1)
  84. TextBox.TextSize = 14
  85. TextBox.TextWrapped = true
  86.  
  87. -- Scripts:
  88.  
  89. CTrain.MouseButton1Down:Connect(function()
  90. if _G.stats then
  91. _G.stats = false
  92. else
  93. _G.stats = true
  94. end
  95. end)
  96.  
  97. KTrain.MouseButton1Down:Connect(function()
  98. if _G.ki then
  99. _G.ki = false
  100. else
  101. _G.ki = true
  102. end
  103. end)
  104.  
  105. STrain.MouseButton1Down:Connect(function()
  106. if _G.speed then
  107. _G.speed = false
  108. else
  109. _G.speed = true
  110. end
  111. end)
  112.  
  113. run_service.RenderStepped:Connect(function()
  114. if _G.stats then
  115. local A_1 = true
  116. local A_2 = 1
  117. local A_3 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].RightHand
  118. local A_4 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].HumanoidRootPart.swing
  119. local Event = game:GetService("ReplicatedStorage").Events.combat
  120. Event:FireServer(A_1, A_2, A_3, A_4)
  121. end
  122.  
  123. if _G.ki then
  124. local A_1 = true
  125. local A_2 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].Effects
  126. local A_3 = Vector3.new(15.8492146, 4930.55469, -1360.7876)
  127. local A_4 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].RightHand
  128. local Event = game:GetService("ReplicatedStorage").Events.blast
  129. Event:FireServer(A_1, A_2, A_3, A_4)
  130. local A_1 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].HumanoidRootPart
  131. local A_2 = true
  132. local Event = game:GetService("ReplicatedStorage").Events.charge
  133. Event:FireServer(A_1, A_2)
  134. end
  135.  
  136. if _G.speed then
  137. local A_1 = 2
  138. local Event = game:GetService("ReplicatedStorage").Events.drain
  139. Event:FireServer(A_1)
  140. local A_1 = game:GetService("Workspace")[game.Players.LocalPlayer.Name].HumanoidRootPart
  141. local A_2 = true
  142. local Event = game:GetService("ReplicatedStorage").Events.charge
  143. Event:FireServer(A_1, A_2)
  144. end
  145. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement