sasod35

boxing beta script pastebin 2022

Nov 2nd, 2022
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.04 KB | None | 0 0
  1. local sound = Instance.new("Sound", game.Workspace)
  2. sound.Volume = 5
  3. sound.SoundId = "rbxassetid://8697636436"
  4. sound.Looped = false
  5. sound:Play()
  6.  
  7. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TheAbsolutionism/Wally-GUI-Library-V2-Remastered/main/Library%20Code", true))()
  8.  
  9. library.options.underlinecolor = 'rainbow'
  10. library.options.toggledisplay = 'Check'
  11.  
  12. local Window = library:CreateWindow('Boxing GYM')
  13. local Label = Window:Label('discord.gg/sinsploit',(nil))
  14.  
  15. local Section = Window:Section('Gloves',(true))
  16. local Dropdown = Window:Dropdown('Dropdown',{
  17. ['default'] = 'Custom Gloves' or nil;
  18. ['list'] = {"default", "Socks", "Retro","Luxury","Mitten","Pancake","CatPaws","RedSquiggles","USA Flag","Mexico Flag","Luxury2","Savage","Cuba Flag","SkeletonHand","Rainbow"};
  19. ['location'] = {};
  20. },function(bool)
  21. local args = {
  22. [1] = (bool)
  23. }
  24.  
  25. game:GetService("ReplicatedStorage").RemoteEvents.CustomGloveRemote:FireServer(unpack(args))
  26. end)
  27. local Section = Window:Section('Player',(true))
  28. local Slider = Window:Slider('WalkSpeed',{
  29. ['default'] = 10;
  30. ['min'] = 7;
  31. ['max'] = 25;
  32. ['precise'] = (true or false);
  33. ['flag'] = 'ball';
  34. ['location'] = {};
  35. },function(spd)
  36. game:GetService("ReplicatedStorage")["BOXING_STATE_WALKSPEED"].Value = (spd)
  37. end)
  38. local Toggle = Window:Toggle('Auto Block',{ -- 1st Arg = Text Display
  39. ['default'] = (nil); -- Arg if you want to manually set it to be Active or not when created
  40. ['flag'] = 'block'; -- Name to be called upon when applied to specified table or default table of library
  41. ['location'] = {}; -- Can be edited for any table or will be placed in Window.flags
  42. },function(v) -- callback function when toggle is turned on or off
  43. local sound = Instance.new("Sound", game.Workspace)
  44. sound.Volume = 2
  45. sound.SoundId = "rbxassetid://6098419898"
  46. sound.Looped = false
  47. sound:Play()
  48. if (v) == true then
  49. local args = {
  50. [1] = "blocking"
  51. }
  52.  
  53. game:GetService("ReplicatedStorage").RemoteEvents.PlayerStaminaRemote:FireServer(unpack(args))
  54. end
  55. if (v) == false then
  56. local args = {
  57. [1] = "unblocking"
  58. }
  59.  
  60. game:GetService("ReplicatedStorage").RemoteEvents.PlayerStaminaRemote:FireServer(unpack(args))
  61. end
  62. end)
  63. local Toggle = Window:Toggle('Toggle PVP',{ -- 1st Arg = Text Display
  64. ['default'] = (nil); -- Arg if you want to manually set it to be Active or not when created
  65. ['flag'] = 'pvp'; -- Name to be called upon when applied to specified table or default table of library
  66. ['location'] = {}; -- Can be edited for any table or will be placed in Window.flags
  67. },function(v) -- callback function when toggle is turned on or off
  68. local sound = Instance.new("Sound", game.Workspace)
  69. sound.Volume = 2
  70. sound.SoundId = "rbxassetid://6098419898"
  71. sound.Looped = false
  72. sound:Play()
  73. if (v) == true then
  74. local args = {
  75. [1] = "on"
  76. }
  77.  
  78. game:GetService("ReplicatedStorage").RemoteEvents.PVPRemote:FireServer(unpack(args))
  79. end
  80. if (v) == false then
  81. local args = {
  82. [1] = "off"
  83. }
  84.  
  85. game:GetService("ReplicatedStorage").RemoteEvents.PVPRemote:FireServer(unpack(args))
  86. end
  87. end)
  88. local Button = Window:Button('Ragdoll',function()
  89. local sound = Instance.new("Sound", game.Workspace)
  90. sound.Volume = 2
  91. sound.SoundId = "rbxassetid://6098419898"
  92. sound.Looped = false
  93. sound:Play()
  94. local args = {
  95. [1] = true
  96. }
  97.  
  98. game:GetService("Players").LocalPlayer.Character.Humanoid.RagdollRemoteEvent:FireServer(unpack(args))
  99. end)
  100. local Button = Window:Button('Unragdoll',function()
  101. local sound = Instance.new("Sound", game.Workspace)
  102. sound.Volume = 2
  103. sound.SoundId = "rbxassetid://6098419898"
  104. sound.Looped = false
  105. sound:Play()
  106. local args = {
  107. [1] = false
  108. }
  109. game:GetService("Players").LocalPlayer.Character.Humanoid.RagdollRemoteEvent:FireServer(unpack(args))
  110. end)
  111. local Button = Window:Button('Inf Dodge Stamina',function()
  112. local sound = Instance.new("Sound", game.Workspace)
  113. sound.Volume = 2
  114. sound.SoundId = "rbxassetid://6098419898"
  115. sound.Looped = false
  116. sound:Play()
  117. local ow
  118. _G.go5 = true
  119. ow = hookmetamethod(game,"__namecall",newcclosure(function(self,...)
  120. local m = getnamecallmethod()
  121. local args = {...}
  122. if not checkcaller() and _G.go5 == true and m == "FireServer" then
  123. if self.Name == "PlayerDodgeRemote" or self.Name == "PlayerStaminaRemote" then
  124. if args[1] == false or args[1] == true then
  125. print(args[1])
  126. return
  127. end
  128. end
  129. print(self,...)
  130. end
  131. return ow(self,...)
  132. end))
  133. end)
  134. local Button = Window:Button('Disable Punch Cooldown',function()
  135. local sound = Instance.new("Sound", game.Workspace)
  136. sound.Volume = 2
  137. sound.SoundId = "rbxassetid://6098419898"
  138. sound.Looped = false
  139. sound:Play()
  140. game:GetService("ReplicatedStorage")["PUNCHING_COOLDOWN"].Value = 0
  141. end)
  142. -- discord invite script
  143. local json = {
  144. ["cmd"] = "INVITE_BROWSER",
  145. ["args"] = {
  146. ["code"] = "sinsploit"
  147. },
  148. ["nonce"] = 'a'
  149. }
  150. spawn(function()
  151. print(syn.request({
  152. Url = 'http://127.0.0.1:6463/rpc?v=1',
  153. Method = 'POST',
  154. Headers = {
  155. ['Content-Type'] = 'application/json',
  156. ['Origin'] = 'https://discord.com'
  157. },
  158. Body = game:GetService('HttpService'):JSONEncode(json),
  159. }).Body)
  160. end)
  161. -- discord invite workspace folder save
  162. if syn then
  163. if isfolder("sinsploit") then
  164. else
  165. makefolder("sinsploit")
  166. end
  167. end
  168.  
  169. if syn then
  170. if isfile('sinsploit/discord invite.lua') then
  171. else
  172. _G.invite = [[
  173. local json = {
  174. ["cmd"] = "INVITE_BROWSER",
  175. ["args"] = {
  176. ["code"] = "sinsploit"
  177. },
  178. ["nonce"] = 'a'
  179. }
  180. spawn(function()
  181. print(syn.request({
  182. Url = 'http://127.0.0.1:6463/rpc?v=1',
  183. Method = 'POST',
  184. Headers = {
  185. ['Content-Type'] = 'application/json',
  186. ['Origin'] = 'https://discord.com'
  187. },
  188. Body = game:GetService('HttpService'):JSONEncode(json),
  189. }).Body)
  190. end)
  191. setclipboard("https://discord.com/invite/sinsploit")
  192. ]]
  193. writefile("sinsploit/discord invite.lua", (_G.invite))
  194. end
  195. end
  196. rconsoleclear('h')
Add Comment
Please, Sign In to add comment