-- 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
How humans could travel millions of light years to distant planets
Trump administration launches race-based discrimination probes of the Harvard Law Review
9 Tips for Starting Clair Obscur: Expedition 33
Latest Posts
The Court Battle to Stop Trump's $20 Billion Climate Clawback
15 Travel Horror Stories That Prove Anything Can Go Wrong on Vacation
Recommended Articles
- What is a Minecraft Skin?
- Facebook Marketplace: cómo funciona, activarlo, crear cuenta
- Partition de disque dur sur windows 10 Forums CNET France
- How to report cash only businesses?
- Boho-tyyli kotona: Boheemi-chic jokaisessa huoneessa |Westwing
- 10 campeggi in Croazia sul mare
- Today in British History
- Im GLB 220 d 4MATIC auf erster Testfahrt - neu und doch nur gewöhnlich ? |
- Armani Code Parfum von Giorgio Armani
- Как скачать и установить Google Chrome - Компьютер - Cправка
- WhatsApp Web Nedir? WP Web Özellikleri ve Avantajları » Ket Web®
- Star Wars: Wielki ilustrowany przewodnik (wydanie specjalne)
- Bảo tàng nước mắm Làng Chài Xưa độc đáo duy nhất tại Việt Nam
- تسجيل الدخول نظام نور - Kss.sa
- Forgot Word Document Password? Here Are Free Ways to Recover Word Password
- The Best TVs We've Tested (July 2025)
- Согласие на обработку персональных данных образец
- Google Meet: Online Web and Video Conferencing Calls | Google Workspace
- BuzzFeed News Reader
- 与知识库对话 - 目前能把视频转脚本的有哪些ai应用 - WayToAGI
- Simontok Browser Anti Blokir dan VPN Nonton Video Viral Tanpa Iklan - Octopus.co.id
- Dagkamer Van der Valk - Valk Exclusief
- Top 5 darknet marketplaces in 2022
- DASDING | Live per Webradio hören
- Impaakt | Certified B Corp | LinkedIn
- Getest: 6 Italiaanse restaurants met de beste pizza van Brussel
- Improved Mobile Experience | Discord
- OBITUARIES :: Iles Funeral Homes
- Obligaciones de una Sociedad Limitada (SL)
- تعلم كل شيء عن الأسماء الكورية
- Cómo eliminar una página de Facebook: vinculada, que creé
- Route plannen in Nederland | ANWB
- Jak często sanepid może „wpaść z wizytą”?
- The 13+ Best Stethoscopes for Medical Professionals (2025)
- What is software? A guide to all of the different types of programs and applications that tell computers what to do
- FACEBOOK ENTRAR INICIAR: COMO INICIAR SESSÃO NO FACEBOOK
- Cienie do powiek | Makeup.pl
- Beth's Beauty Spot Wiesloch | Öffnungszeiten | Telefon
- The Salt Path (Film, 2024) - MovieMeter.nl
- FREE English to Hindi Translation | English ↔ हिंदी
- How to Choose the Best Adult Diapers
- 10 Ways to Get Help in Windows 11 - GeekChamp
- Savings on Laptops | Staples
- What is sum of 2 and 5 | Number Line & Place Value method
- What Top Scholars Say About Leadership | Working Knowledge
- The 9 Best Online Piano Lessons (2024) - MusicalHow
- [FR] PokeMMO Pour Les Nuls
- 2 Ways to Completely Delete Bing Search History [Browser & Microsoft Account]
- Boutons de Manchettes - Argent, Plaqué Or et Or
- Timeline: Australia's Immigration Policy
- Útvonalterv készítése és az útvonalak megjelenítése a Google Térképen - Számítógép
- Reaction Time Test - Test Your Response Speed
- Eine Schritt-für-Schritt-Anleitung zur Verwendung des Bing AI Image Creator (2025)
- "Anna" i wampir | Film | 1981
- Twintig over drie/tien voor half vier
- Your eBay. Your way.
- Как войти в почту по паролю — Помощь по сервисам Mail
- 윈도우10/11 노트북 배터리 수명 극대화! 최적의 설정과 관리법 완벽 가이드
- nail closed/nail up/close/shut
- Google AI Studio for Beginners: Master the Basics of Google AI Studio - TechPP
- Aurora Forecast | Geophysical Institute
- Tips to design retail space for any future tenant - Colorado Real Estate Journal
- Jak zaktualizować sterowniki USB w systemie Windows 10?
- HIGH Mobile Erfahrungen: Die HIGH Tarife im Test (2025)
- UAE Gratuity Calculator 2025 | Free End of Service Pay Tool
- Trimmer X Tm-6559 3 in 1 Hair clipper Price in Pakistan 2025
- Premier League fixtures 2024-25: Full schedule and dates
- Principaux repères sur le VIH/sida
- Forum 60 millions de consommateurs • Consulter le sujet
- 댓글 설정 알아보기 - YouTube 고객센터
- Buy Snack Bars & Granola Bars Online - CVS Pharmacy
- Download Mi Home for PC / Windows
- So lassen sich Brandgasventilatoren fachgerecht doppelt nutzen
- Things To Do in Des Moines this weekend: Festivals, free movies and National Ice Cream Day
- Past Simple/ Present Perfect with 'always, never, ever'
- Choose the Best GST Method for You - ACT Bookkeeping
- Authentifizieren Sie Ihr AOL Mail-Konto in E-Mail-Anwendungen von Drittanbietern neu
- Garlasco: il test conferma un nuovo Dna, caccia a 'ignoto 3' - Notizie - Ansa.it
- Do an Advanced Search on Google - Computer
- wiki — Wiktionnaire, le dictionnaire libre
- Informatie over water en riolering
- Ministers fear riots as towns with Afghans learn WHY they are there
- Let your hair down (literal)
- Structure, Function, Location, Anatomy, Diagram
- Polycystic Ovarian Syndrome
- Complete Guide to Hand Anatomy: Parts, Names & Diagram
- Car Rental Antananarivo - Madagascar - VIP Cars
- Stock market today: Dow slides after CPI inflation accelerates, Nvidia's surge lifts Nasdaq to record
- Kommissionen præsenterede største budgetforslag nogensinde – det kritiseres for både at være for stort og for småt
- Rotes Rathaus Berlin - Events, Termine, Info
- Ruszyła nowa strona główna Interii. Sprawdź, co się zmieniło
- 25 Pros And Cons Of WhatsApp
- Culpa - Streams, Episodenguide und News zur Serie
- known all men by these presents that:
- Report sul rendimento (risultati della Ricerca)
- 20 EPIC Things to Do at Bryce Canyon National Park (+ Photos)
- Bard becomes Gemini: Try Ultra 1.0 and a new mobile app today
- localhost/wordpress/wp-admin
- 150+ Dark Web Links | Deep Websites Links | Active Markets 2023
- Hogyan kell futni? Windows 10 Lemezkezelő eszköz a meghajtók kezelésére
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.