-- loadstring for all you mobile users loadstring(game:HttpGet('https://pastebin.com/anuVuXjv'))()
-- made with ChatGPT 4-0, for testing purposes
-- somehow this is better than any other script for this game i've seen so far
-- Kavo UI Library setup
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
local Window = Library.CreateLib("Slap Battles Script by d3cryptt! (best sb script ever!)", "Ocean")
-- Slap Aura Section
local SlapAuraTab = Window:NewTab("Slap Aura")
local SlapAuraSection = SlapAuraTab:NewSection("Slap Aura")
local SlapAuraSection = SlapAuraTab:NewSection("good alt got banned, use my video for a tutorial!")
-- Variables
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local player = Players.LocalPlayer
local slapDistance = 60
local slapCooldown = 0.6
local lastSlapTime = 0
local slapEnabled = false
local selectedRemote = "b" -- Default remote
-- Function to slap the closest player within the slap distance
local function slapClosestPlayer()
if not slapEnabled then return end -- Only proceed if Slap Aura is enabled
local closestPlayer = nil
local closestDistance = slapDistance
if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
local playerPosition = player.Character.HumanoidRootPart.Position
for _, otherPlayer in pairs(Players:GetPlayers()) do
if otherPlayer ~= player and otherPlayer.Character and otherPlayer.Character:FindFirstChild("HumanoidRootPart") then
local otherPlayerPosition = otherPlayer.Character.HumanoidRootPart.Position
local distance = (playerPosition - otherPlayerPosition).Magnitude
if distance <= closestDistance then
closestDistance = distance
closestPlayer = otherPlayer
end
end
end
if closestPlayer and tick() - lastSlapTime >= slapCooldown then
lastSlapTime = tick() -- Update last slap time
if closestPlayer.Character and closestPlayer.Character:FindFirstChild("Head") then
local head = closestPlayer.Character.Head
local args = {head}
local remote = ReplicatedStorage:FindFirstChild(selectedRemote)
if remote then
remote:FireServer(unpack(args))
end
end
end
end
end
-- Dropdown menu for glove selection
local gloveList = {
{"Default", "b"},
{"Dual", "GeneralHit"},
{"Diamond", "DiamondHit"},
{"ZZZZZZZ", "ZZZZZZZHit"},
{"Extended", "b"},
{"Brick", "BrickHit"},
{"Snow", "SnowHit"},
{"Pull", "PullHit"},
{"Flash", "FlashHit"},
{"Spring", "springhit"},
{"Swapper", "HitSwapper"},
{"Bull", "BullHit"},
{"Dice", "DiceHit"},
{"Ghost", "GhostHit"},
{"Thanos", "ThanosHit"},
{"Stun", "HtStun"},
{"L.O.L.B.O.M.B", "GeneralHit"},
{"Za Hando", "zhrmat"},
{"Fort", "Fort"},
{"Magnet", "MagnetHIT"},
{"Pusher", "PusherHit"},
{"Anchor", "hitAnchor"},
{"Space", "HtSpace"},
{"Boomerang", "BoomerangH"},
{"Speedrun", "Speedrunhit"},
{"Mail", "MailHit"},
{"T H I C K", "GeneralHit"},
{"Golden", "GoldenHit"},
{"Squid", "GeneralHit"},
{"MR", "MisterHit"},
{"Hive", "GeneralHit"},
{"Reaper", "GeneralHit"},
{"Replica", "ReplicaHit"},
{"Defense", "DefenseHit"},
{"Killstreak", "KSHit"},
{"Reverse", "ReverseHit"},
{"Shukuchi", "ShukuchiHit"},
{"Duelist", "DuelistHit"},
{"Woah", "(woahHit)"},
{"Ice (doesnt work, idk why)", "(IceHit)"},
{"Gummy", "(GeneralHit)"},
{"Adios", "(hitAdios)"},
{"Blocked", "(NOT SUPPORTED)"},
{"Divert", "(NOT SUPPORTED)"},
{"Engineer", "(NOT SUPPORTED)"},
{"Rocky", "(NOT SUPPORTED)"},
{"Coil", "(NOT SUPPORTED)"},
{"Conveyor", "(NOT SUPPORTED)"},
{"Balloony", "(NOT SUPPORTED)"},
{"Phantom", "(NOT SUPPORTED)"},
{"El Gato", "(NOT SUPPORTED)"},
{"Wormhole", "(NOT SUPPORTED)"},
{"Stop", "(NOT SUPPORTED)"},
{"Track", "(NOT SUPPORTED)"},
{"Tableflip", "(NOT SUPPORTED)"},
{"Shild", "(NOT SUPPORTED)"},
{"Booster", "(NOT SUPPORTED)"},
{"Ping Pong", "(NOT SUPPORTED)"},
{"Baller", "(NOT SUPPORTED)"},
{"Home Run", "(NOT SUPPORTED)"},
{"Whirlwind", "(NOT SUPPORTED)"},
{"Slicer", "(NOT SUPPORTED)"},
{"Excavator", "(NOT SUPPORTED)"},
{"Nightmare", "(NOT SUPPORTED)"},
{"Thor", "(NOT SUPPORTED)"},
{"Pocket", "(NOT SUPPORTED)"},
{"Grapple", "(NOT SUPPORTED)"},
{"Cloud", "(NOT SUPPORTED)"},
{"Gravity", "(NOT SUPPORTED)"},
{"Parry", "(NOT SUPPORTED)"},
{"Jebaited", "(NOT SUPPORTED)"},
{"Meteor", "(NOT SUPPORTED)"},
{"Oven", "(NOT SUPPORTED)"},
{"Guardian Angel", "(NOT SUPPORTED)"},
{"Sun", "(NOT SUPPORTED)"},
{"Ferryman", "(NOT SUPPORTED)"},
{"Blackhole", "(NOT SUPPORTED)"},
{"Blink", "(NOT SUPPORTED)"},
{"Prop", "(NOT SUPPORTED)"},
{"Slapstick", "(NOT SUPPORTED)"},
{"Beatdown", "(NOT SUPPORTED)"},
{"Chicken", "(NOT SUPPORTED)"},
{"Bonk", "(NOT SUPPORTED)"},
{"Sbeve", "(NOT SUPPORTED)"},
{"Golem", "(NOT SUPPORTED)"},
{"Grab", "(NOT SUPPORTED)"},
{"Ufo", "(NOT SUPPORTED)"},
{"God's Hand", "(NOT SUPPORTED)"},
{"The Flex", "FlexHit"},
{"CULT", "CULTHit"},
{"Tycoon", "GeneralHit"},
{"Orbit", "Orbihit"},
{"Avatar (works for Avatar and the Normal Glove", "GeneralHit"},
{"Frostbite", "GeneralHit"}
}
local gloveNames = {}
for _, glove in ipairs(gloveList) do
table.insert(gloveNames, glove[1])
end
SlapAuraSection:NewDropdown("Select Glove", "Choose a glove to set the remote", gloveNames, function(selected)
for _, glove in ipairs(gloveList) do
if glove[1] == selected then
selectedRemote = glove[2]
break
end
end
end)
-- UI Elements for Slap Aura
SlapAuraSection:NewToggle("Enable Slap Aura", "Toggle the Slap Aura on/off", function(state)
slapEnabled = state
end)
SlapAuraSection:NewSlider("Slap Distance", "Set the distance for the Slap Aura", 50, 1, slapDistance, function(value)
slapDistance = value
end)
SlapAuraSection:NewButton("Tp to Arena, (god mode) (USE IN THE LOBBY!!)", "Makes you tp to the Arena", function()
local player = game.Players.LocalPlayer.Character
local part = workspace.Arena["main island"].Grass
player.HumanoidRootPart.CFrame = part.CFrame
end)
-- Update handling using RunService
local RunService = game:GetService("RunService")
RunService.RenderStepped:Connect(function()
if slapEnabled then
slapClosestPlayer()
end
end)
--Slapple stuff
local SlappleFarmTab = Window:NewTab("Slapple Farm")
local SlappleFarmSection = SlappleFarmTab:NewSection("farm slapples")
-- Slapple Farm Section
SlappleFarmSection:NewToggle("Enable Slapple Farm", "Toggle the Slapple Farm on/off", function(state)
slappleFarmEnabled = state
end)
-- Function to fire TouchInterests for Slapples
local function farmSlapples()
local slappleContainer = workspace:FindFirstChild("Arena") and workspace.Arena:FindFirstChild("island5") and workspace.Arena.island5:FindFirstChild("Slapples")
if slappleContainer then
for _, slapple in ipairs(slappleContainer:GetChildren()) do
if slapple:IsA("Model") and slapple:FindFirstChild("Glove") then
local glove = slapple.Glove
if glove:FindFirstChild("TouchInterest") then
firetouchinterest(player.Character.HumanoidRootPart, glove, 0)
firetouchinterest(player.Character.HumanoidRootPart, glove, 1)
end
end
end
end
end
-- Function to update slap and slapple farm checks
local function onUpdate()
if slapEnabled then
slapClosestPlayer()
end
if slappleFarmEnabled then
farmSlapples()
end
end
-- Continuous check for actions
RunService.RenderStepped:Connect(onUpdate)
-- Anti Fall Tab and Toggle
local AntiFallTab = Window:NewTab("Anti Fall")
local AntiFallSection = AntiFallTab:NewSection("Anti Fall")
-- Services
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
-- Variables
local player = Players.LocalPlayer
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)
local fallProtectionEnabled = false
-- Function to check if the player has fallen
local function checkFall()
if fallProtectionEnabled and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
local yPosition = player.Character.HumanoidRootPart.Position.Y
if yPosition < -10 then -- Set the threshold Y value as needed
player.Character:SetPrimaryPartCFrame(teleportCFrame)
end
end
end
AntiFallSection:NewToggle("Teleport Anti Fall", "Toggle the Anti Fall protection on/off", function(state)
fallProtectionEnabled = state
end)
-- Continuous check for fall detection
RunService.Heartbeat:Connect(checkFall)
-- Variables
local originalCFrame = CFrame.new(-4.08799744, -8.92285156, 1.83599997) * CFrame.Angles(0, 0, math.rad(0.06))
local platformSize = Vector3.new(3000, 1, 3000) -- Flat, 1 stud high
local platform
local isPlatformVisible = false
-- Function to create the invisible part
local function createPlatform()
if not platform then
platform = Instance.new("Part")
platform.Size = platformSize
platform.CFrame = originalCFrame
platform.Anchored = true
platform.CanCollide = true
platform.Transparency = 0.8 -- Invisible
platform.Parent = workspace
end
platform.Parent = workspace
end
-- Function to remove the platform
local function removePlatform()
if platform then
platform.Parent = nil
end
end
-- Toggle function for the button
local function togglePlatform()
if isPlatformVisible then
removePlatform()
else
createPlatform()
end
isPlatformVisible = not isPlatformVisible
end
-- Kavo UI Button Setup
AntiFallSection:NewToggle("Invisible Floor Anti Fall", "Toggle the invisible platform", function(state)
togglePlatform()
end)
AntiFallSection:NewButton("Delete Void/Death Barriers (not lobby)", "Deletes all specified barriers", function()
local partsToDelete = {
workspace:FindFirstChild("DEATHBARRIER"),
workspace:FindFirstChild("DEATHBARRIER2"),
workspace:FindFirstChild("ArenaBarrier"),
workspace:FindFirstChild("dedBarrier"),
workspace:FindFirstChild("AntiDefaultArena")
}
for _, part in ipairs(partsToDelete) do
if part then
part:Destroy()
end
end
end)
-- Other tabs and sections you have can go below here...
local PlayerTab = Window:NewTab("Player")
local PlayerSection = PlayerTab:NewSection("Player")
local PlayerSection = PlayerTab:NewSection("funny stuff that is funny")
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local player = Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
-- Connections storage
local HumanModCons = {}
-- Function to handle WalkSpeed change
local function WalkSpeedChange(speed)
humanoid.WalkSpeed = speed
end
-- Function to handle JumpPower change
local function JumpPowerChange(power)
humanoid.JumpPower = power
end
-- Slider for WalkSpeed
PlayerSection:NewSlider("Walk Speed", "Adjusts your walk speed", 150, 16, function(value)
local speed = value
if isnumber(speed) then
WalkSpeedChange(speed)
HumanModCons.wsLoop = (HumanModCons.wsLoop and HumanModCons.wsLoop:Disconnect() and false) or humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
WalkSpeedChange(speed)
end)
HumanModCons.wsCA = (HumanModCons.wsCA and HumanModCons.wsCA:Disconnect() and false) or player.CharacterAdded:Connect(function(nChar)
character, humanoid = nChar, nChar:WaitForChild("Humanoid")
WalkSpeedChange(speed)
HumanModCons.wsLoop = (HumanModCons.wsLoop and HumanModCons.wsLoop:Disconnect() and false) or humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
WalkSpeedChange(speed)
end)
end)
end
end)
-- Slider for JumpPower
PlayerSection:NewSlider("Jump Power", "Adjusts your jump power", 150, 50, function(value)
local power = value
if isnumber(power) then
JumpPowerChange(power)
HumanModCons.jpLoop = (HumanModCons.jpLoop and HumanModCons.jpLoop:Disconnect() and false) or humanoid:GetPropertyChangedSignal("JumpPower"):Connect(function()
JumpPowerChange(power)
end)
HumanModCons.jpCA = (HumanModCons.jpCA and HumanModCons.jpCA:Disconnect() and false) or player.CharacterAdded:Connect(function(nChar)
character, humanoid = nChar, nChar:WaitForChild("Humanoid")
JumpPowerChange(power)
HumanModCons.jpLoop = (HumanModCons.jpLoop and HumanModCons.jpLoop:Disconnect() and false) or humanoid:GetPropertyChangedSignal("JumpPower"):Connect(function()
JumpPowerChange(power)
end)
end)
end
end)
-- Cleanup function when the player leaves
Players.PlayerRemoving:Connect(function(removingPlayer)
if removingPlayer == player then
if HumanModCons.wsLoop then HumanModCons.wsLoop:Disconnect() end
if HumanModCons.wsCA then HumanModCons.wsCA:Disconnect() end
if HumanModCons.jpLoop then HumanModCons.jpLoop:Disconnect() end
if HumanModCons.jpCA then HumanModCons.jpCA:Disconnect() end
end
end)
-- Function to check if a value is a number
function isnumber(value)
return type(value) == "number"
end
local extrashitTab = Window:NewTab("extra stuff")
local extrashitSection = extrashitTab:NewSection("some cool useful stuff")
extrashitSection:NewToggle("Auto Click Tycoon", "Automatically clicks the Tycoon button", function(Value)
AutoTycoon = Value
for i,v in pairs(workspace:GetDescendants()) do
if v.Name == "End" and v.ClassName == "Part" then
v.Size = Vector3.new(28, 0.3, 4)
end
end
while AutoTycoon do
for i,v in pairs(workspace:GetDescendants()) do
if v.Name == "Click" and v:FindFirstChild("ClickDetector") then
fireclickdetector(v.ClickDetector)
end
end
task.wait()
end
end)
extrashitSection:NewButton("Give Reaper 20 kills (press this after they slap you)", "ButtonInfo", function()
for i = 1, 20 do
game:GetService("ReplicatedStorage"):WaitForChild("HumanoidDied"):FireServer(x, false)
end
for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v.Name == "DeathMark" then
game.ReplicatedStorage.ReaperGone:FireServer(v)
game:GetService("Lighting"):WaitForChild("DeathMarkColorCorrection"):Destroy()
end
end
end)
extrashitSection:NewToggle("Rhythm Explosion Spam (All gloves)", "Toggles the rhythm explosion spam", function(state)
RhythmSpam = state
while RhythmSpam do
game:GetService("ReplicatedStorage").rhythmevent:FireServer("AoeExplosion", 0)
task.wait()
end
end)
extrashitSection:NewToggle("Null Ability (all gloves)", "Toggles the Null ability loop", function(state)
NullSpam = state
while NullSpam do
game:GetService("ReplicatedStorage").NullAbility:FireServer()
task.wait()
end
end)
extrashitSection:NewButton("Infinite Yield", "gives you admin commands", function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
end)
extrashitSection:NewButton("Remote Spy", "gives you a remote spyer", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/SimpleSpyV3/main.lua"))()
end)
extrashitSection:NewButton("Dex Explorer", "gives you dex explorer", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/dex.lua"))()
end)
local BadgesTab = Window:NewTab("Badges")
local BadgesSection = BadgesTab:NewSection("Badges")
BadgesSection:NewButton("Get Elude", "Teleport to Elude Maze", function()
local teleportFunc = queueonteleport or queue_on_teleport
if teleportFunc then
teleportFunc([[
if not game:IsLoaded() then
game.Loaded:Wait()
end
repeat wait() until game.Players.LocalPlayer
game:GetService("RunService").RenderStepped:Connect(function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-502.336, 14.228, -179.597)
end)
game:GetService("TeleportService"):Teleport(6403373529)
]])
end
game:GetService("TeleportService"):Teleport(11828384869)
end)
BadgesSection:NewButton("Get Chain (1k slaps)", "Teleport and solve puzzle", function()
if game.Players.LocalPlayer.leaderstats.Slaps.Value >= 1000 then
local teleportFunc = queueonteleport or queue_on_teleport
if teleportFunc then
teleportFunc([[
if not game:IsLoaded() then
game.Loaded:Wait()
end
repeat wait() until game.Players.LocalPlayer
repeat wait() until game.Workspace:FindFirstChild("Map"):FindFirstChild("CodeBrick")
if game.Workspace.Map.CodeBrick.SurfaceGui:FindFirstChild("IMGTemplate") then
game.Workspace.Map.CodeBrick.SurfaceGui.IMGTemplate.Name = "1st"
game.Workspace.Map.CodeBrick.SurfaceGui.IMGTemplate.Name = "2nd"
game.Workspace.Map.CodeBrick.SurfaceGui.IMGTemplate.Name = "3rd"
game.Workspace.Map.CodeBrick.SurfaceGui.IMGTemplate.Name = "4th"
end
-- Your logic for setting first, seconds, third, and fourth variables
fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons.Reset.ClickDetector)
wait(0.25)
fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons[first].ClickDetector)
wait(0.25)
fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons[seconds].ClickDetector)
wait(0.25)
fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons[third].ClickDetector)
wait(0.25)
fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons[fourth].ClickDetector)
wait(0.25)
fireclickdetector(game.Workspace.Map.OriginOffice.Door.Keypad.Buttons.Enter.ClickDetector)
game:GetService("TeleportService"):Teleport(6403373529)
]])
end
game:GetService("TeleportService"):Teleport(9431156611)
end
end)
local teleporting = false
local function teleport()
while teleporting do
if game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Arena.Plate.CFrame
end
wait(0.1)
end
end
local BadgesSection = BadgesTab:NewSection("use Slapple Farm for Slapple Badge")
BadgesSection:NewToggle("Get Tycoon (tip: use extended, slap aura, and ;walkfling", "Teleports to the plate every 0.1 secondss", function(state)
teleporting = state
if state then
teleport()
end
end)
BadgesSection:NewButton("Get [REDACTED] (5k slaps)", "Get the [REDACTED] badge", function()
if game.Players.LocalPlayer.leaderstats.Slaps.Value >= 5000 then
Door = 0
for i = 1, 10 do
Door = Door + 1
if not game:GetService("BadgeService"):UserHasBadgeAsync(game.Players.LocalPlayer.UserId, 2124847850) then
firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), workspace.PocketDimension.Doors[Door], 0)
firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), workspace.PocketDimension.Doors[Door], 1)
wait(3.75)
end
end
else
print ("you so stupid brah")
end
end)
BadgesSection:NewToggle("Auto Collect Jet Orbs", "Auto-collect Jet Orbs", function(Value)
Jetfarm = Value
while Jetfarm do
for _, v in pairs(game.Workspace:GetChildren()) do
if v.Name == "JetOrb" and v:FindFirstChild("TouchInterest") then
firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 0)
firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 1)
end
end
task.wait()
end
end)
BadgesSection:NewButton("Teleport to Staff Application Room (Admin Glove)", "Badge", function()
if game:GetService("ReplicatedStorage").Assets.Retro.Map then
game.ReplicatedStorage.Assets.Retro.Map.Parent = workspace
wait(0.4)
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)
wait(0.4)
fireclickdetector(workspace.Map.RetroObbyMap:GetChildren()[5].StaffApp.Button.ClickDetector)
else
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)
wait(0.4)
fireclickdetector(workspace.Map.RetroObbyMap:GetChildren()[5].StaffApp.Button.ClickDetector)
end
end)
BadgesSection:NewButton("Get Lamp Glove", "Need ZZZZZZZ Glove", function()
if game.Players.LocalPlayer.leaderstats.Glove.Value == "ZZZZZZZ" then
for i = 1,5 do
game:GetService("ReplicatedStorage").nightmare:FireServer("LightBroken")
end
else
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Error",Text = "Need ZZZZZZZ Glove.",Icon = "rbxassetid://7733658504",Duration = 10})
end
end)
BadgesSection:NewButton("Get Ice Skate Glove", "Badge", function()
local args = {
[1] = "Freeze"
}
game:GetService("ReplicatedStorage").IceSkate:FireServer(unpack(args))
end)
BadgesSection:NewDropdown("Maze Badge", "Badge", {"Counter", "Elude"}, function(y)
if y == "Counter" then
local teleportFunc = queueonteleport or queue_on_teleport or syn and syn.queue_on_teleport
if teleportFunc then
teleportFunc([[
if not game:IsLoaded() then
game.Loaded:Wait()
end
repeat wait() until game.Players.LocalPlayer
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)
wait(0.3)
fireclickdetector(game.Workspace.CounterLever.ClickDetector)
wait(1)
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)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 2 minutes and 1 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 2 minutes to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 59 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 58 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 57 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 56 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 55 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 54 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 53 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 52 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 51 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 50 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 49 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 48 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 47 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 46 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 45 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 44 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 43 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 42 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 41 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 40 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 39 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 38 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 37 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 36 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 35 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 34 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 33 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 32 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 31 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 30 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 29 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 28 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 27 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 26 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 25 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 24 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 23 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 22 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 21 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 20 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 19 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 18 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 17 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 16 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 15 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 14 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 13 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 12 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 11 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 10 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 9 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 8 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 7 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 6 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 5 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 4 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 3 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 2 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes and 1 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 minutes to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 59 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 58 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 57 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 56 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 55 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 54 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 53 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 52 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 51 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 50 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 49 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 48 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 47 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 46 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 45 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 44 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 43 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 42 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 41 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 40 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 39 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 38 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 37 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 36 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 35 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 34 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 33 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 32 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 31 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 30 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 29 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 28 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 27 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 26 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 25 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 24 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 23 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 22 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 21 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 20 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 19 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 18 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 17 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 16 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 15 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 14 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 13 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 12 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 11 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 10 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 9 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 8 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 7 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 6 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 5 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 4 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 3 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 2 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
game:GetService("StarterGui"):SetCore("SendNotification",{Title = "Wait",Text = " 1 seconds to receive.",Icon = "rbxassetid://7733656100",Duration = 0.1})
wait(1)
for i,v in pairs(workspace.Maze:GetDescendants()) do
if v:IsA("ClickDetector") then
fireclickdetector(v)
end
end
]])
end
game:GetService("TeleportService"):Teleport(11828384869)
elseif y == "Elude" then
local teleportFunc = queueonteleport or queue_on_teleport or syn and syn.queue_on_teleport
if teleportFunc then
teleportFunc([[
if not game:IsLoaded() then
game.Loaded:Wait()
end
repeat wait() until game.Players.LocalPlayer
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)
wait(1)
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)
wait(1)
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)
wait(1)
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)
wait(2)
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)
]])
end
game:GetService("TeleportService"):Teleport(11828384869)
end
end)
BadgesSection:NewToggle("Auto Collect Phase Orbs", "Auto-collect Phase Orbs", function(Value)
Phasefarm = Value
while Phasefarm do
for _, v in pairs(game.Workspace:GetChildren()) do
if v.Name == "PhaseOrb" and v:FindFirstChild("TouchInterest") then
firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 0)
firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 1)
end
end
task.wait()
end
end)
BadgesSection:NewButton("Get Brazil Badge", "Get the Brazil badge", function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.Lobby.brazil.portal.CFrame
end)
BadgesSection:NewButton("Get court evidence Badge", "Get the court evidence badge", function()
fireclickdetector(game.Workspace.Lobby.Scene.knofe.ClickDetector)
end)
BadgesSection:NewButton("Get duck Badge", "Get the duck badge", function()
fireclickdetector(game.Workspace.Arena["default island"]["Rubber Ducky"].ClickDetector)
end)
BadgesSection:NewButton("Get The Lone Orange Badge", "Get The Lone Orange badge", function()
fireclickdetector(game.Workspace.Arena.island5.Orange.ClickDetector)
end)
Slap battles script! - Pastebin.com (2025)
Top Articles
What Is The Point Of Daily Dose Of Sunshine (정신병동에도 아침이 와요) (2023)
What Year Was The Movie Cuisine Vietnamienne : Tous Les Phôs Sont Au Vert (2024) Released
See the complete list of winners for the 2024 Oscars
Latest Posts
“La Piscine” (“The Swimming Pool”) by Jacques Deray (1969) - Golden Globes
Cool by the pool: See 100 years of swimming in metro Phoenix
Recommended Articles
- Evil Dead Ii (1987) Full Movie English Subtitles
- Diamond Crack Diamond 4K Comparison
- Everspace 2 im Test: Freelancer trifft Diablo - auch auf PS5 ein Brett!
- Quentin Tarantino Enters the 4K Era With New Releases of Four of His Best Films
- Allen Covert Age 2023
- Vitamin C Eye Cream - Serious C3 C Eye DUO + BONUS Lash Bath + Conditioner
- 'Eye patches, times a thousand', a beauty editor reviews MZ skin LightMAX MiniPro Eyeconic LED
- FOX Cheat Sheet: Canceled 9-1-1: Lone Star Deserves Another Season; Accused Fails to Make A Case for Renewal
- Can You Swim In Cart Precision Racing
- Selma Blair im Interview: "Seine Lippen fühlten sich an wie Plastik. " - Planet Interview
- The Movie Battle Of The Planets
- Politrochade in Pakistan: Nawaz Sharif hat noch nicht genug
- How To Make Shaun The Sheep: Sheep Stack In Infinite Craft
- "donkey" Movies — The Movie Database (TMDB)
- Is Diversion On Hulu Or Netflix
- How to Use An Eyelash Curler
- Can You Play Pvkk: Planetenverteidigungskanonenkommandant For Free
- Makeup Tools and Accessories
- If Your Feet Are Sore, Crusty, Or Just Plain Tired, These 33 Products Will Be ~Toe-Total~ Game Changers
- Here are the best settings for Indiana Jones and the Great Circle on gaming handhelds — ROG Ally, Legion Go, Steam Deck
- How Can I Watch Willemspark
- Into The Emberlands: Supporter Pack First Dlc
- Hand & Foot Treatment - Body Care | Ulta Beauty
- Terrahawks Cast English
- A History of the English Language - PDF Free Download
- The Mystic Land Of Tales Juego Gratis
- Fallout 4 Next Gen Update – Bethesda Adds Enclave Quest, Weapons, Armor, Halloween Workshop
- Feel good-filmer på Netflix | ELLE
- Finger PNG, Download Finger PNG Images for Free
- How Many Pages Are In The The Land (2024)
- Airoya 4-Sided Breathable 3D AirMesh Bumper for all four Sides Slated Cots & Cotbeds
- My Time At Sandrock: Builder's Beach And Ball Clothing Pack Stutter
- Exponent Symbol – MathBz
- Yuru-I Gegege No Kitaro: Yokai Dotabata Daisensou Unlock Characters
- The Incredibles: Rise of the Underminer - Wikiquote
- My Little Pony Kanau
- How Many Books Are In Caja De Resistencia (2024)
- "8년 만에 한국 온다"...콜드플레이, 내년 4월 4번이나 무대 선다 | 한국일보
- ✨ G.B.S Shaving Set for Sensitive Skin, Includes Steel Lather Bowl, Lavender and Citrus Aftershave Balm, Lavender and Citrus Shave Soap and Synthetic Shave Brush with Travel Tube — 🛍️ The Retail Market
- Exfoliate For Men Guide
- Rohrschelle-20-x-24-x-865-mm-frohe-je-25-miju-1-zoll-stahl-roh-galv-gelb-verz-gah: in Bilsen | markt.de
- Gegen trockene Haut: Harnstoff – spannend in Galenik und Therapie
- Liaison Brow Root Activator Review: Is It Worth It?
- As a kid, she 'messed with bugs' on FM Beach. Now she's surviving 'Deal or No Deal Island'
- Best Aozora Under Girls! Deals
- [단국대편입] 2022 자연계 편입 목표라면 꼭 보세요!
- Where To Watch The Magnetic Fighters (2024) Netflix
- The Minor Scales: Natural, Harmonic And Melodic
- Daily Trademarks filed in USPTO | Trademark Elite
- Buy cheap Active Neurons 2 CD Key 🏷️ Best Price
- This Electric Toothbrush Has A Built In Water Flosser — And It’s At The Lowest Price Ever
- Rawshan Zamil Handbags
- Brainstorm: The Game Show Co Op
- Best Eyebrow Trimmers & Razors for Flawless Gorgeous Brows
- The Best Electronic Chess Board | Buying Guide & Top Picks
- Goober Arena Page
- Delicious No-Bake Orange Creamsicle Truffles Recipe to Delight You
- Robbie Buchanan Jr earns first career World of Outlaws Pro Series victory at Fairbury Speedway - iRacing.com
- Idle Breaker: Loot And Survive Free
- Top 5 Best Floss For Braces of 2025
- GE Scale for Body Weight Smar...B0CJT4Y1CP
- We can do it : l'histoire d'une affiche (pas) féministe
- When Does La Frecuencia Kirlian Come Out
- Download وكأن شيئا لم يكن Movie
- 14 Ash Brown Hair Color Ideas and Formulas | Wella Professionals
- Dino Stalker (2002) - MobyGames
- How To Mod Assassin's Creed Valhalla: The Last Chapter Steam
- Gnosis Alpha Test
- 13 Hair and Scalp Treatments You Can Probably DIY at Home Right Now
- Fastlane Pinball Ipa
- Does Netflix Have The Great Day On The Beach (1991)
- Get directions and show routes in Google Maps - Computer
- Das sind die Top 10 der besten ferngesteuerten Kräne - Ratgeber
- ✨ 18x30x1 (17.5 x 29.5) Accumulair Emerald 1-Inch Filter (MERV 6) (6 Pack) — 🛍️ The Retail Market
- I paid $110 for a structured Gel-X manicure. The short set was low-maintenance and long-lasting.
- Velislava Gospodinova Dancing Gif
- Greg Norman's Golf Power Rock
- Dentists and Testers Agree: These Are the Best Teeth Whiteners Available
- The Binding of Isaac
- Linwood Boomer Best Picture
- Say Goodbye to Mascara Residue With Our Favorite Eye Makeup Removers
- Hak Cipta Dilindungi Undangundang - PDF Free Download
- Sonic Pc Port Remake Uodate
- ❤️ Heart Symbol Explained: The Emoji World's Universal Language of Love 💖 | 🏆 Emojiguide
- Understanding CSGO Nades >> What Is It All About?
- Downloaden & Spielen von Squid Game: Entfesselt auf PC & Mac (Emulator)
- Here’s What You Need to Know About Oral Hygiene
- A Complete Unknown Celebrates the Dazzling Unknowability of Bob Dylan
- Pros and Cons of Free Feminine Hygiene Products | Ablison
- Braun Barttrimmer Test 2025: 3 Geräte Im Vergleich
- Not Found 44 (2021) Poster
- Rawshan Zamil Directed Movies
- Sägepalme Vorteile, Verwendungen, Dosierung und Nebenwirkungen - Dr.med.Julia.com
- 7 Underrated Malayalam Films of 2024 - pinklungi.com
- All About Breech Babies
- 13 Best Moisturizers for Dry Skin
- Flowers of Shanghai (1998)
- Yasuzō Masumura Girlfriends
- Cidade Gráfica (2024) Movie Online
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.