Slap battles script! - Pastebin.com (2025)

  1. -- loadstring for all you mobile users loadstring(game:HttpGet('https://pastebin.com/anuVuXjv'))()

  2. -- made with ChatGPT 4-0, for testing purposes

  3. -- somehow this is better than any other script for this game i've seen so far

  4. -- Kavo UI Library setup

  5. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()

  6. local Window = Library.CreateLib("Slap Battles Script by d3cryptt! (best sb script ever!)", "Ocean")

  7. -- Slap Aura Section

  8. local SlapAuraTab = Window:NewTab("Slap Aura")

  9. local SlapAuraSection = SlapAuraTab:NewSection("Slap Aura")

  10. local SlapAuraSection = SlapAuraTab:NewSection("good alt got banned, use my video for a tutorial!")

  11. -- Variables

  12. local Players = game:GetService("Players")

  13. local ReplicatedStorage = game:GetService("ReplicatedStorage")

  14. local player = Players.LocalPlayer

  15. local slapDistance = 60

  16. local slapCooldown = 0.6

  17. local lastSlapTime = 0

  18. local slapEnabled = false

  19. local selectedRemote = "b" -- Default remote

  20. -- Function to slap the closest player within the slap distance

  21. local function slapClosestPlayer()

  22. if not slapEnabled then return end -- Only proceed if Slap Aura is enabled

  23. local closestPlayer = nil

  24. local closestDistance = slapDistance

  25. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then

  26. local playerPosition = player.Character.HumanoidRootPart.Position

  27. for _, otherPlayer in pairs(Players:GetPlayers()) do

  28. if otherPlayer ~= player and otherPlayer.Character and otherPlayer.Character:FindFirstChild("HumanoidRootPart") then

  29. local otherPlayerPosition = otherPlayer.Character.HumanoidRootPart.Position

  30. local distance = (playerPosition - otherPlayerPosition).Magnitude

  31. if distance <= closestDistance then

  32. closestDistance = distance

  33. closestPlayer = otherPlayer

  34. end

  35. end

  36. end

  37. if closestPlayer and tick() - lastSlapTime >= slapCooldown then

  38. lastSlapTime = tick() -- Update last slap time

  39. if closestPlayer.Character and closestPlayer.Character:FindFirstChild("Head") then

  40. local head = closestPlayer.Character.Head

  41. local args = {head}

  42. local remote = ReplicatedStorage:FindFirstChild(selectedRemote)

  43. if remote then

  44. remote:FireServer(unpack(args))

  45. end

  46. end

  47. end

  48. end

  49. end

  50. -- Dropdown menu for glove selection

  51. local gloveList = {

  52. {"Default", "b"},

  53. {"Dual", "GeneralHit"},

  54. {"Diamond", "DiamondHit"},

  55. {"ZZZZZZZ", "ZZZZZZZHit"},

  56. {"Extended", "b"},

  57. {"Brick", "BrickHit"},

  58. {"Snow", "SnowHit"},

  59. {"Pull", "PullHit"},

  60. {"Flash", "FlashHit"},

  61. {"Spring", "springhit"},

  62. {"Swapper", "HitSwapper"},

  63. {"Bull", "BullHit"},

  64. {"Dice", "DiceHit"},

  65. {"Ghost", "GhostHit"},

  66. {"Thanos", "ThanosHit"},

  67. {"Stun", "HtStun"},

  68. {"L.O.L.B.O.M.B", "GeneralHit"},

  69. {"Za Hando", "zhrmat"},

  70. {"Fort", "Fort"},

  71. {"Magnet", "MagnetHIT"},

  72. {"Pusher", "PusherHit"},

  73. {"Anchor", "hitAnchor"},

  74. {"Space", "HtSpace"},

  75. {"Boomerang", "BoomerangH"},

  76. {"Speedrun", "Speedrunhit"},

  77. {"Mail", "MailHit"},

  78. {"T H I C K", "GeneralHit"},

  79. {"Golden", "GoldenHit"},

  80. {"Squid", "GeneralHit"},

  81. {"MR", "MisterHit"},

  82. {"Hive", "GeneralHit"},

  83. {"Reaper", "GeneralHit"},

  84. {"Replica", "ReplicaHit"},

  85. {"Defense", "DefenseHit"},

  86. {"Killstreak", "KSHit"},

  87. {"Reverse", "ReverseHit"},

  88. {"Shukuchi", "ShukuchiHit"},

  89. {"Duelist", "DuelistHit"},

  90. {"Woah", "(woahHit)"},

  91. {"Ice (doesnt work, idk why)", "(IceHit)"},

  92. {"Gummy", "(GeneralHit)"},

  93. {"Adios", "(hitAdios)"},

  94. {"Blocked", "(NOT SUPPORTED)"},

  95. {"Divert", "(NOT SUPPORTED)"},

  96. {"Engineer", "(NOT SUPPORTED)"},

  97. {"Rocky", "(NOT SUPPORTED)"},

  98. {"Coil", "(NOT SUPPORTED)"},

  99. {"Conveyor", "(NOT SUPPORTED)"},

  100. {"Balloony", "(NOT SUPPORTED)"},

  101. {"Phantom", "(NOT SUPPORTED)"},

  102. {"El Gato", "(NOT SUPPORTED)"},

  103. {"Wormhole", "(NOT SUPPORTED)"},

  104. {"Stop", "(NOT SUPPORTED)"},

  105. {"Track", "(NOT SUPPORTED)"},

  106. {"Tableflip", "(NOT SUPPORTED)"},

  107. {"Shild", "(NOT SUPPORTED)"},

  108. {"Booster", "(NOT SUPPORTED)"},

  109. {"Ping Pong", "(NOT SUPPORTED)"},

  110. {"Baller", "(NOT SUPPORTED)"},

  111. {"Home Run", "(NOT SUPPORTED)"},

  112. {"Whirlwind", "(NOT SUPPORTED)"},

  113. {"Slicer", "(NOT SUPPORTED)"},

  114. {"Excavator", "(NOT SUPPORTED)"},

  115. {"Nightmare", "(NOT SUPPORTED)"},

  116. {"Thor", "(NOT SUPPORTED)"},

  117. {"Pocket", "(NOT SUPPORTED)"},

  118. {"Grapple", "(NOT SUPPORTED)"},

  119. {"Cloud", "(NOT SUPPORTED)"},

  120. {"Gravity", "(NOT SUPPORTED)"},

  121. {"Parry", "(NOT SUPPORTED)"},

  122. {"Jebaited", "(NOT SUPPORTED)"},

  123. {"Meteor", "(NOT SUPPORTED)"},

  124. {"Oven", "(NOT SUPPORTED)"},

  125. {"Guardian Angel", "(NOT SUPPORTED)"},

  126. {"Sun", "(NOT SUPPORTED)"},

  127. {"Ferryman", "(NOT SUPPORTED)"},

  128. {"Blackhole", "(NOT SUPPORTED)"},

  129. {"Blink", "(NOT SUPPORTED)"},

  130. {"Prop", "(NOT SUPPORTED)"},

  131. {"Slapstick", "(NOT SUPPORTED)"},

  132. {"Beatdown", "(NOT SUPPORTED)"},

  133. {"Chicken", "(NOT SUPPORTED)"},

  134. {"Bonk", "(NOT SUPPORTED)"},

  135. {"Sbeve", "(NOT SUPPORTED)"},

  136. {"Golem", "(NOT SUPPORTED)"},

  137. {"Grab", "(NOT SUPPORTED)"},

  138. {"Ufo", "(NOT SUPPORTED)"},

  139. {"God's Hand", "(NOT SUPPORTED)"},

  140. {"The Flex", "FlexHit"},

  141. {"CULT", "CULTHit"},

  142. {"Tycoon", "GeneralHit"},

  143. {"Orbit", "Orbihit"},

  144. {"Avatar (works for Avatar and the Normal Glove", "GeneralHit"},

  145. {"Frostbite", "GeneralHit"}

  146. }

  147. local gloveNames = {}

  148. for _, glove in ipairs(gloveList) do

  149. table.insert(gloveNames, glove[1])

  150. end

  151. SlapAuraSection:NewDropdown("Select Glove", "Choose a glove to set the remote", gloveNames, function(selected)

  152. for _, glove in ipairs(gloveList) do

  153. if glove[1] == selected then

  154. selectedRemote = glove[2]

  155. break

  156. end

  157. end

  158. end)

  159. -- UI Elements for Slap Aura

  160. SlapAuraSection:NewToggle("Enable Slap Aura", "Toggle the Slap Aura on/off", function(state)

  161. slapEnabled = state

  162. end)

  163. SlapAuraSection:NewSlider("Slap Distance", "Set the distance for the Slap Aura", 50, 1, slapDistance, function(value)

  164. slapDistance = value

  165. end)

  166. SlapAuraSection:NewButton("Tp to Arena, (god mode) (USE IN THE LOBBY!!)", "Makes you tp to the Arena", function()

  167. local player = game.Players.LocalPlayer.Character

  168. local part = workspace.Arena["main island"].Grass

  169. player.HumanoidRootPart.CFrame = part.CFrame

  170. end)

  171. -- Update handling using RunService

  172. local RunService = game:GetService("RunService")

  173. RunService.RenderStepped:Connect(function()

  174. if slapEnabled then

  175. slapClosestPlayer()

  176. end

  177. end)

  178. --Slapple stuff

  179. local SlappleFarmTab = Window:NewTab("Slapple Farm")

  180. local SlappleFarmSection = SlappleFarmTab:NewSection("farm slapples")

  181. -- Slapple Farm Section

  182. SlappleFarmSection:NewToggle("Enable Slapple Farm", "Toggle the Slapple Farm on/off", function(state)

  183. slappleFarmEnabled = state

  184. end)

  185. -- Function to fire TouchInterests for Slapples

  186. local function farmSlapples()

  187. local slappleContainer = workspace:FindFirstChild("Arena") and workspace.Arena:FindFirstChild("island5") and workspace.Arena.island5:FindFirstChild("Slapples")

  188. if slappleContainer then

  189. for _, slapple in ipairs(slappleContainer:GetChildren()) do

  190. if slapple:IsA("Model") and slapple:FindFirstChild("Glove") then

  191. local glove = slapple.Glove

  192. if glove:FindFirstChild("TouchInterest") then

  193. firetouchinterest(player.Character.HumanoidRootPart, glove, 0)

  194. firetouchinterest(player.Character.HumanoidRootPart, glove, 1)

  195. end

  196. end

  197. end

  198. end

  199. end

  200. -- Function to update slap and slapple farm checks

  201. local function onUpdate()

  202. if slapEnabled then

  203. slapClosestPlayer()

  204. end

  205. if slappleFarmEnabled then

  206. farmSlapples()

  207. end

  208. end

  209. -- Continuous check for actions

  210. RunService.RenderStepped:Connect(onUpdate)

  211. -- Anti Fall Tab and Toggle

  212. local AntiFallTab = Window:NewTab("Anti Fall")

  213. local AntiFallSection = AntiFallTab:NewSection("Anti Fall")

  214. -- Services

  215. local Players = game:GetService("Players")

  216. local RunService = game:GetService("RunService")

  217. -- Variables

  218. local player = Players.LocalPlayer

  219. local teleportCFrame = CFrame.new(-6.73902416, -5.20054817, 1.95076489, -0.136649311, -0.00766478525, -0.990589857, -0.000125628911, 0.999970198, -0.00772003829, 0.99061954, -0.000930505106, -0.136646196)

  220. local fallProtectionEnabled = false

  221. -- Function to check if the player has fallen

  222. local function checkFall()

  223. if fallProtectionEnabled and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then

  224. local yPosition = player.Character.HumanoidRootPart.Position.Y

  225. if yPosition < -10 then -- Set the threshold Y value as needed

  226. player.Character:SetPrimaryPartCFrame(teleportCFrame)

  227. end

  228. end

  229. end

  230. AntiFallSection:NewToggle("Teleport Anti Fall", "Toggle the Anti Fall protection on/off", function(state)

  231. fallProtectionEnabled = state

  232. end)

  233. -- Continuous check for fall detection

  234. RunService.Heartbeat:Connect(checkFall)

  235. -- Variables

  236. local originalCFrame = CFrame.new(-4.08799744, -8.92285156, 1.83599997) * CFrame.Angles(0, 0, math.rad(0.06))

  237. local platformSize = Vector3.new(3000, 1, 3000) -- Flat, 1 stud high

  238. local platform

  239. local isPlatformVisible = false

  240. -- Function to create the invisible part

  241. local function createPlatform()

  242. if not platform then

  243. platform = Instance.new("Part")

  244. platform.Size = platformSize

  245. platform.CFrame = originalCFrame

  246. platform.Anchored = true

  247. platform.CanCollide = true

  248. platform.Transparency = 0.8 -- Invisible

  249. platform.Parent = workspace

  250. end

  251. platform.Parent = workspace

  252. end

  253. -- Function to remove the platform

  254. local function removePlatform()

  255. if platform then

  256. platform.Parent = nil

  257. end

  258. end

  259. -- Toggle function for the button

  260. local function togglePlatform()

  261. if isPlatformVisible then

  262. removePlatform()

  263. else

  264. createPlatform()

  265. end

  266. isPlatformVisible = not isPlatformVisible

  267. end

  268. -- Kavo UI Button Setup

  269. AntiFallSection:NewToggle("Invisible Floor Anti Fall", "Toggle the invisible platform", function(state)

  270. togglePlatform()

  271. end)

  272. AntiFallSection:NewButton("Delete Void/Death Barriers (not lobby)", "Deletes all specified barriers", function()

  273. local partsToDelete = {

  274. workspace:FindFirstChild("DEATHBARRIER"),

  275. workspace:FindFirstChild("DEATHBARRIER2"),

  276. workspace:FindFirstChild("ArenaBarrier"),

  277. workspace:FindFirstChild("dedBarrier"),

  278. workspace:FindFirstChild("AntiDefaultArena")

  279. }

  280. for _, part in ipairs(partsToDelete) do

  281. if part then

  282. part:Destroy()

  283. end

  284. end

  285. end)

  286. -- Other tabs and sections you have can go below here...

  287. local PlayerTab = Window:NewTab("Player")

  288. local PlayerSection = PlayerTab:NewSection("Player")

  289. local PlayerSection = PlayerTab:NewSection("funny stuff that is funny")

  290. local Players = game:GetService("Players")

  291. local RunService = game:GetService("RunService")

  292. local player = Players.LocalPlayer

  293. local character = player.Character or player.CharacterAdded:Wait()

  294. local humanoid = character:WaitForChild("Humanoid")

  295. -- Connections storage

  296. local HumanModCons = {}

  297. -- Function to handle WalkSpeed change

  298. local function WalkSpeedChange(speed)

  299. humanoid.WalkSpeed = speed

  300. end

  301. -- Function to handle JumpPower change

  302. local function JumpPowerChange(power)

  303. humanoid.JumpPower = power

  304. end

  305. -- Slider for WalkSpeed

  306. PlayerSection:NewSlider("Walk Speed", "Adjusts your walk speed", 150, 16, function(value)

  307. local speed = value

  308. if isnumber(speed) then

  309. WalkSpeedChange(speed)

  310. HumanModCons.wsLoop = (HumanModCons.wsLoop and HumanModCons.wsLoop:Disconnect() and false) or humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()

  311. WalkSpeedChange(speed)

  312. end)

  313. HumanModCons.wsCA = (HumanModCons.wsCA and HumanModCons.wsCA:Disconnect() and false) or player.CharacterAdded:Connect(function(nChar)

  314. character, humanoid = nChar, nChar:WaitForChild("Humanoid")

  315. WalkSpeedChange(speed)

  316. HumanModCons.wsLoop = (HumanModCons.wsLoop and HumanModCons.wsLoop:Disconnect() and false) or humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()

  317. WalkSpeedChange(speed)

  318. end)

  319. end)

  320. end

  321. end)

  322. -- Slider for JumpPower

  323. PlayerSection:NewSlider("Jump Power", "Adjusts your jump power", 150, 50, function(value)

  324. local power = value

  325. if isnumber(power) then

  326. JumpPowerChange(power)

  327. HumanModCons.jpLoop = (HumanModCons.jpLoop and HumanModCons.jpLoop:Disconnect() and false) or humanoid:GetPropertyChangedSignal("JumpPower"):Connect(function()

  328. JumpPowerChange(power)

  329. end)

  330. HumanModCons.jpCA = (HumanModCons.jpCA and HumanModCons.jpCA:Disconnect() and false) or player.CharacterAdded:Connect(function(nChar)

  331. character, humanoid = nChar, nChar:WaitForChild("Humanoid")

  332. JumpPowerChange(power)

  333. HumanModCons.jpLoop = (HumanModCons.jpLoop and HumanModCons.jpLoop:Disconnect() and false) or humanoid:GetPropertyChangedSignal("JumpPower"):Connect(function()

  334. JumpPowerChange(power)

  335. end)

  336. end)

  337. end

  338. end)

  339. -- Cleanup function when the player leaves

  340. Players.PlayerRemoving:Connect(function(removingPlayer)

  341. if removingPlayer == player then

  342. if HumanModCons.wsLoop then HumanModCons.wsLoop:Disconnect() end

  343. if HumanModCons.wsCA then HumanModCons.wsCA:Disconnect() end

  344. if HumanModCons.jpLoop then HumanModCons.jpLoop:Disconnect() end

  345. if HumanModCons.jpCA then HumanModCons.jpCA:Disconnect() end

  346. end

  347. end)

  348. -- Function to check if a value is a number

  349. function isnumber(value)

  350. return type(value) == "number"

  351. end

  352. local extrashitTab = Window:NewTab("extra stuff")

  353. local extrashitSection = extrashitTab:NewSection("some cool useful stuff")

  354. extrashitSection:NewToggle("Auto Click Tycoon", "Automatically clicks the Tycoon button", function(Value)

  355. AutoTycoon = Value

  356. for i,v in pairs(workspace:GetDescendants()) do

  357. if v.Name == "End" and v.ClassName == "Part" then

  358. v.Size = Vector3.new(28, 0.3, 4)

  359. end

  360. end

  361. while AutoTycoon do

  362. for i,v in pairs(workspace:GetDescendants()) do

  363. if v.Name == "Click" and v:FindFirstChild("ClickDetector") then

  364. fireclickdetector(v.ClickDetector)

  365. end

  366. end

  367. task.wait()

  368. end

  369. end)

  370. extrashitSection:NewButton("Give Reaper 20 kills (press this after they slap you)", "ButtonInfo", function()

  371. for i = 1, 20 do

  372. game:GetService("ReplicatedStorage"):WaitForChild("HumanoidDied"):FireServer(x, false)

  373. end

  374. for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do

  375. if v.Name == "DeathMark" then

  376. game.ReplicatedStorage.ReaperGone:FireServer(v)

  377. game:GetService("Lighting"):WaitForChild("DeathMarkColorCorrection"):Destroy()

  378. end

  379. end

  380. end)

  381. extrashitSection:NewToggle("Rhythm Explosion Spam (All gloves)", "Toggles the rhythm explosion spam", function(state)

  382. RhythmSpam = state

  383. while RhythmSpam do

  384. game:GetService("ReplicatedStorage").rhythmevent:FireServer("AoeExplosion", 0)

  385. task.wait()

  386. end

  387. end)

  388. extrashitSection:NewToggle("Null Ability (all gloves)", "Toggles the Null ability loop", function(state)

  389. NullSpam = state

  390. while NullSpam do

  391. game:GetService("ReplicatedStorage").NullAbility:FireServer()

  392. task.wait()

  393. end

  394. end)

  395. extrashitSection:NewButton("Infinite Yield", "gives you admin commands", function()

  396. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()

  397. end)

  398. extrashitSection:NewButton("Remote Spy", "gives you a remote spyer", function()

  399. loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/SimpleSpyV3/main.lua"))()

  400. end)

  401. extrashitSection:NewButton("Dex Explorer", "gives you dex explorer", function()

  402. loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/dex.lua"))()

  403. end)

  404. local BadgesTab = Window:NewTab("Badges")

  405. local BadgesSection = BadgesTab:NewSection("Badges")

  406. BadgesSection:NewButton("Get Elude", "Teleport to Elude Maze", function()

  407. local teleportFunc = queueonteleport or queue_on_teleport

  408. if teleportFunc then

  409. teleportFunc([[

  410. if not game:IsLoaded() then

  411. game.Loaded:Wait()

  412. end

  413. repeat wait() until game.Players.LocalPlayer

  414. game:GetService("RunService").RenderStepped:Connect(function()

  415. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-502.336, 14.228, -179.597)

  416. end)

  417. game:GetService("TeleportService"):Teleport(6403373529)

  418. ]])

  419. end

  420. game:GetService("TeleportService"):Teleport(11828384869)

  421. end)

  422. BadgesSection:NewButton("Get Chain (1k slaps)", "Teleport and solve puzzle", function()

  423. if game.Players.LocalPlayer.leaderstats.Slaps.Value >= 1000 then

  424. local teleportFunc = queueonteleport or queue_on_teleport

  425. if teleportFunc then

  426. teleportFunc([[

  427. if not game:IsLoaded() then

  428. game.Loaded:Wait()

  429. end

  430. repeat wait() until game.Players.LocalPlayer

  431. repeat wait() until game.Workspace:FindFirstChild("Map"):FindFirstChild("CodeBrick")

  432. if game.Workspace.Map.CodeBrick.SurfaceGui:FindFirstChild("IMGTemplate") then

  433. game.Workspace.Map.CodeBrick.SurfaceGui.IMGTemplate.Name = "1st"

  434. game.Workspace.Map.CodeBrick.SurfaceGui.IMGTemplate.Name = "2nd"

  435. game.Workspace.Map.CodeBrick.SurfaceGui.IMGTemplate.Name = "3rd"

  436. game.Workspace.Map.CodeBrick.SurfaceGui.IMGTemplate.Name = "4th"

  437. end

  438. -- Your logic for setting first, seconds, third, and fourth variables

  439. fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons.Reset.ClickDetector)

  440. wait(0.25)

  441. fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons[first].ClickDetector)

  442. wait(0.25)

  443. fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons[seconds].ClickDetector)

  444. wait(0.25)

  445. fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons[third].ClickDetector)

  446. wait(0.25)

  447. fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons[fourth].ClickDetector)

  448. wait(0.25)

  449. fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons.Enter.ClickDetector)

  450. game:GetService("TeleportService"):Teleport(6403373529)

  451. ]])

  452. end

  453. game:GetService("TeleportService"):Teleport(9431156611)

  454. end

  455. end)

  456. local teleporting = false

  457. local function teleport()

  458. while teleporting do

  459. if game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then

  460. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Arena.Plate.CFrame

  461. end

  462. wait(0.1)

  463. end

  464. end

  465. local BadgesSection = BadgesTab:NewSection("use Slapple Farm for Slapple Badge")

  466. BadgesSection:NewToggle("Get Tycoon (tip: use extended, slap aura, and ;walkfling", "Teleports to the plate every 0.1 secondss", function(state)

  467. teleporting = state

  468. if state then

  469. teleport()

  470. end

  471. end)

  472. BadgesSection:NewButton("Get [REDACTED] (5k slaps)", "Get the [REDACTED] badge", function()

  473. if game.Players.LocalPlayer.leaderstats.Slaps.Value >= 5000 then

  474. Door = 0

  475. for i = 1, 10 do

  476. Door = Door + 1

  477. if not game:GetService("BadgeService"):UserHasBadgeAsync(game.Players.LocalPlayer.UserId, 2124847850) then

  478. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), workspace.PocketDimension.Doors[Door], 0)

  479. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), workspace.PocketDimension.Doors[Door], 1)

  480. wait(3.75)

  481. end

  482. end

  483. else

  484. print ("you so stupid brah")

  485. end

  486. end)

  487. BadgesSection:NewToggle("Auto Collect Jet Orbs", "Auto-collect Jet Orbs", function(Value)

  488. Jetfarm = Value

  489. while Jetfarm do

  490. for _, v in pairs(game.Workspace:GetChildren()) do

  491. if v.Name == "JetOrb" and v:FindFirstChild("TouchInterest") then

  492. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 0)

  493. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 1)

  494. end

  495. end

  496. task.wait()

  497. end

  498. end)

  499. BadgesSection:NewButton("Teleport to Staff Application Room (Admin Glove)", "Badge", function()

  500. if game:GetService("ReplicatedStorage").Assets.Retro.Map then

  501. game.ReplicatedStorage.Assets.Retro.Map.Parent = workspace

  502. wait(0.4)

  503. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16971.7168, 797.600342, 4905.17334, 0.230043754, -4.14069206e-08, 0.973180294, -1.62095546e-08, 1, 4.63797178e-08, -0.973180294, -2.64441837e-08, 0.230043754)

  504. wait(0.4)

  505. fireclickdetector(workspace.Map.RetroObbyMap:GetChildren()[5].StaffApp.Button.ClickDetector)

  506. else

  507. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16971.7168, 797.600342, 4905.17334, 0.230043754, -4.14069206e-08, 0.973180294, -1.62095546e-08, 1, 4.63797178e-08, -0.973180294, -2.64441837e-08, 0.230043754)

  508. wait(0.4)

  509. fireclickdetector(workspace.Map.RetroObbyMap:GetChildren()[5].StaffApp.Button.ClickDetector)

  510. end

  511. end)

  512. BadgesSection:NewButton("Get Lamp Glove", "Need ZZZZZZZ Glove", function()

  513. if game.Players.LocalPlayer.leaderstats.Glove.Value == "ZZZZZZZ" then

  514. for i = 1,5 do

  515. game:GetService("ReplicatedStorage").nightmare:FireServer("LightBroken")

  516. end

  517. else

  518. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Error",Text = "Need ZZZZZZZ Glove.",Icon = "rbxassetid://7733658504",Duration = 10})

  519. end

  520. end)

  521. BadgesSection:NewButton("Get Ice Skate Glove", "Badge", function()

  522. local args = {

  523. [1] = "Freeze"

  524. }

  525. game:GetService("ReplicatedStorage").IceSkate:FireServer(unpack(args))

  526. end)

  527. BadgesSection:NewDropdown("Maze Badge", "Badge", {"Counter", "Elude"}, function(y)

  528. if y == "Counter" then

  529. local teleportFunc = queueonteleport or queue_on_teleport or syn and syn.queue_on_teleport

  530. if teleportFunc then

  531. teleportFunc([[

  532. if not game:IsLoaded() then

  533. game.Loaded:Wait()

  534. end

  535. repeat wait() until game.Players.LocalPlayer

  536. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-61.4113426, 4.67113781, -45.0443306, -0.0143145993, 0.00252397754, -0.999894321, -7.96703534e-06, 0.999996841, 0.00252435054, 0.99989748, 4.41164557e-05, -0.014314536)

  537. wait(0.3)

  538. fireclickdetector(game.Workspace.CounterLever.ClickDetector)

  539. wait(1)

  540. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(15.2456455, 4.49108553, -233.529053, -0.631848156, -0.00334048411, 0.775085032, -1.25992265e-05, 0.999990761, 0.00429952005, -0.775092185, 0.00270687975, -0.631842375)

  541. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 2 minutes and 1 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  542. wait(1)

  543. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 2 minutes to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  544. wait(1)

  545. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 59 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  546. wait(1)

  547. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 58 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  548. wait(1)

  549. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 57 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  550. wait(1)

  551. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 56 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  552. wait(1)

  553. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 55 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  554. wait(1)

  555. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 54 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  556. wait(1)

  557. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 53 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  558. wait(1)

  559. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 52 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  560. wait(1)

  561. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 51 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  562. wait(1)

  563. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 50 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  564. wait(1)

  565. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 49 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  566. wait(1)

  567. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 48 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  568. wait(1)

  569. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 47 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  570. wait(1)

  571. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 46 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  572. wait(1)

  573. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 45 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  574. wait(1)

  575. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 44 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  576. wait(1)

  577. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 43 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  578. wait(1)

  579. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 42 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  580. wait(1)

  581. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 41 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  582. wait(1)

  583. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 40 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  584. wait(1)

  585. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 39 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  586. wait(1)

  587. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 38 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  588. wait(1)

  589. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 37 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  590. wait(1)

  591. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 36 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  592. wait(1)

  593. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 35 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  594. wait(1)

  595. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 34 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  596. wait(1)

  597. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 33 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  598. wait(1)

  599. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 32 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  600. wait(1)

  601. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 31 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  602. wait(1)

  603. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 30 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  604. wait(1)

  605. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 29 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  606. wait(1)

  607. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 28 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  608. wait(1)

  609. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 27 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  610. wait(1)

  611. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 26 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  612. wait(1)

  613. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 25 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  614. wait(1)

  615. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 24 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  616. wait(1)

  617. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 23 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  618. wait(1)

  619. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 22 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  620. wait(1)

  621. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 21 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  622. wait(1)

  623. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 20 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  624. wait(1)

  625. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 19 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  626. wait(1)

  627. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 18 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  628. wait(1)

  629. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 17 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  630. wait(1)

  631. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 16 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  632. wait(1)

  633. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 15 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  634. wait(1)

  635. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 14 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  636. wait(1)

  637. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 13 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  638. wait(1)

  639. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 12 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  640. wait(1)

  641. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 11 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  642. wait(1)

  643. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 10 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  644. wait(1)

  645. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 9 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  646. wait(1)

  647. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 8 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  648. wait(1)

  649. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 7 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  650. wait(1)

  651. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 6 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  652. wait(1)

  653. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 5 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  654. wait(1)

  655. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 4 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  656. wait(1)

  657. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 3 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  658. wait(1)

  659. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 2 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  660. wait(1)

  661. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 1 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  662. wait(1)

  663. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  664. wait(1)

  665. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 59 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  666. wait(1)

  667. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 58 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  668. wait(1)

  669. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 57 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  670. wait(1)

  671. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 56 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  672. wait(1)

  673. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 55 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  674. wait(1)

  675. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 54 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  676. wait(1)

  677. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 53 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  678. wait(1)

  679. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 52 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  680. wait(1)

  681. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 51 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  682. wait(1)

  683. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 50 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  684. wait(1)

  685. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 49 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  686. wait(1)

  687. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 48 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  688. wait(1)

  689. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 47 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  690. wait(1)

  691. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 46 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  692. wait(1)

  693. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 45 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  694. wait(1)

  695. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 44 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  696. wait(1)

  697. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 43 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  698. wait(1)

  699. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 42 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  700. wait(1)

  701. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 41 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  702. wait(1)

  703. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 40 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  704. wait(1)

  705. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 39 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  706. wait(1)

  707. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 38 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  708. wait(1)

  709. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 37 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  710. wait(1)

  711. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 36 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  712. wait(1)

  713. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 35 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  714. wait(1)

  715. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 34 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  716. wait(1)

  717. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 33 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  718. wait(1)

  719. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 32 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  720. wait(1)

  721. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 31 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  722. wait(1)

  723. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 30 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  724. wait(1)

  725. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 29 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  726. wait(1)

  727. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 28 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  728. wait(1)

  729. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 27 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  730. wait(1)

  731. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 26 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  732. wait(1)

  733. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 25 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  734. wait(1)

  735. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 24 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  736. wait(1)

  737. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 23 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  738. wait(1)

  739. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 22 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  740. wait(1)

  741. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 21 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  742. wait(1)

  743. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 20 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  744. wait(1)

  745. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 19 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  746. wait(1)

  747. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 18 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  748. wait(1)

  749. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 17 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  750. wait(1)

  751. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 16 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  752. wait(1)

  753. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 15 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  754. wait(1)

  755. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 14 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  756. wait(1)

  757. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 13 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  758. wait(1)

  759. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 12 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  760. wait(1)

  761. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 11 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  762. wait(1)

  763. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 10 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  764. wait(1)

  765. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 9 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  766. wait(1)

  767. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 8 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  768. wait(1)

  769. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 7 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  770. wait(1)

  771. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 6 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  772. wait(1)

  773. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 5 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  774. wait(1)

  775. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 4 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  776. wait(1)

  777. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 3 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  778. wait(1)

  779. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 2 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  780. wait(1)

  781. game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})

  782. wait(1)

  783. for i,v in pairs(workspace.Maze:GetDescendants()) do

  784. if v:IsA("ClickDetector") then

  785. fireclickdetector(v)

  786. end

  787. end

  788. ]])

  789. end

  790. game:GetService("TeleportService"):Teleport(11828384869)

  791. elseif y == "Elude" then

  792. local teleportFunc = queueonteleport or queue_on_teleport or syn and syn.queue_on_teleport

  793. if teleportFunc then

  794. teleportFunc([[

  795. if not game:IsLoaded() then

  796. game.Loaded:Wait()

  797. end

  798. repeat wait() until game.Players.LocalPlayer

  799. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-193.290787, 7.39999914, -130.307114, 0.454088956, 1.82432505e-08, 0.890956342, -2.14201332e-08, 1, -9.55894652e-09, -0.890956342, -1.4743792e-08, 0.454088956)

  800. wait(1)

  801. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(84.8454437, 7.39999914, -201.827698, 0.694604456, -5.9176017e-08, 0.719391882, 4.9516661e-08, 1, 3.44478792e-08, -0.719391882, 1.16942349e-08, 0.694604456)

  802. wait(1)

  803. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(218.528198, 7.39999914, 83.4171371, 0.655885577, 5.49275381e-09, 0.754860282, -1.8204565e-08, 1, 8.54112692e-09, -0.754860282, -1.9343906e-08, 0.655885577)

  804. wait(1)

  805. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(104.568184, 10.5492659, 194.721115, 0.990249932, -0.136891961, 0.0258003082, -0.0024311184, 0.168200076, 0.9857499, -0.139280856, -0.976201475, 0.166227311)

  806. wait(2)

  807. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-502.335632, 14.2279472, -179.596512, 1, 0, 0, 0, -0.965929747, 0.258804798, 0, -0.258804798, -0.965929747)

  808. ]])

  809. end

  810. game:GetService("TeleportService"):Teleport(11828384869)

  811. end

  812. end)

  813. BadgesSection:NewToggle("Auto Collect Phase Orbs", "Auto-collect Phase Orbs", function(Value)

  814. Phasefarm = Value

  815. while Phasefarm do

  816. for _, v in pairs(game.Workspace:GetChildren()) do

  817. if v.Name == "PhaseOrb" and v:FindFirstChild("TouchInterest") then

  818. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 0)

  819. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 1)

  820. end

  821. end

  822. task.wait()

  823. end

  824. end)

  825. BadgesSection:NewButton("Get Brazil Badge", "Get the Brazil badge", function()

  826. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.Lobby.brazil.portal.CFrame

  827. end)

  828. BadgesSection:NewButton("Get court evidence Badge", "Get the court evidence badge", function()

  829. fireclickdetector(game.Workspace.Lobby.Scene.knofe.ClickDetector)

  830. end)

  831. BadgesSection:NewButton("Get duck Badge", "Get the duck badge", function()

  832. fireclickdetector(game.Workspace.Arena["default island"]["Rubber Ducky"].ClickDetector)

  833. end)

  834. BadgesSection:NewButton("Get The Lone Orange Badge", "Get The Lone Orange badge", function()

  835. fireclickdetector(game.Workspace.Arena.island5.Orange.ClickDetector)

  836. end)

Slap battles script! - Pastebin.com (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Zonia Mosciski DO

Last Updated:

Views: 5807

Rating: 4 / 5 (51 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Zonia Mosciski DO

Birthday: 1996-05-16

Address: Suite 228 919 Deana Ford, Lake Meridithberg, NE 60017-4257

Phone: +2613987384138

Job: Chief Retail Officer

Hobby: Tai chi, Dowsing, Poi, Letterboxing, Watching movies, Video gaming, Singing

Introduction: My name is Zonia Mosciski DO, I am a enchanting, joyous, lovely, successful, hilarious, tender, outstanding person who loves writing and wants to share my knowledge and understanding with you.