Advertisement
BlyatMan69

DBZ GUI

Jan 15th, 2020
572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local w = library:CreateWindow('DBZ')
  3. w:Section("Made by StalinTheMighty")
  4. w:Section("Tested By MitsukiLurn")
  5. local t = w:Toggle("AutoCharge", {flag = "toggle1"})
  6. local t = w:Toggle("AutoDefense", {flag = "toggle2"})
  7. local t = w:Toggle("AutoKi", {flag = "toggle3"})
  8.  
  9. spawn(function()
  10. while wait()do
  11. if w.flags.toggle1 then
  12. local oh1 = game:GetService("Players").LocalPlayer.Status
  13. local oh2 = game:GetService("Players").LocalPlayer.Character.UpperTorso
  14. local oh3 = game:GetService("Players").LocalPlayer.Character.Humanoid
  15. local oh4 = false
  16. game:GetService("ReplicatedStorage").Remotes.Training.Charge:InvokeServer(oh1, oh2, oh3, oh4)
  17. end
  18. end
  19. end)
  20.  
  21. spawn(function()
  22. while wait()do
  23. if w.flags.toggle2 then
  24. local oh1 = game:GetService("Players").LocalPlayer.Stats
  25. local oh2 = game:GetService("Players").LocalPlayer.Status
  26. local oh3 = game:GetService("Players").LocalPlayer.Character.Humanoid
  27. local oh4 = game:GetService("Players").LocalPlayer.Character.RightHand
  28. game:GetService("ReplicatedStorage").Remotes.Training.Defense:InvokeServer(oh1, oh2, oh3, oh4)
  29. end
  30. end
  31. end)
  32.  
  33. spawn(function()
  34. while wait()do
  35. if w.flags.toggle3 then
  36. local oh1 = game:GetService("Players").LocalPlayer.Status
  37. local oh2 = game:GetService("Players").LocalPlayer.Stats
  38. local oh3 = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  39. local oh4 = game:GetService("Players").LocalPlayer.Character.RightHand
  40. local oh5 = game:GetService("Players").LocalPlayer.Character.LeftHand
  41. local oh6 = game:GetService("Players").LocalPlayer.Character.UpperTorso
  42. game:GetService("ReplicatedStorage").Remotes.Training.Blast:InvokeServer(oh1, oh2, oh3, oh4, oh5, oh6)
  43. end
  44. end
  45. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement