local expectedPlaceId = 134424372433341 if game.PlaceId ~= expectedPlaceId then game.Players.LocalPlayer:Kick("Wrong Game Brother!n(Error Code: 267)") return end local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/miroeramaa/TurtleLib/main/TurtleUiLib.lua"))() local Window = Library:Window("Pass Or Explode") getgenv().AutoFarmCoins = false local function AutoFarmCoinsLoop() task.spawn(function() local lp = game.Players.LocalPlayer local targetPos = Vector3.new(88, 25, -64) while getgenv().AutoFarmCoins do -- Teleport to coin farm location if lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") then lp.Character.HumanoidRootPart.CFrame = CFrame.new(targetPos) task.wait(0.1) local humanoid = lp.Character:FindFirstChild("Humanoid") if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end pcall(function() local coinRemote = game:GetService("ReplicatedStorage"):FindFirstChild("CoinRemote") if coinRemote then coinRemote:FireServer() end end) end task.wait(0.5) end end) end Window:Toggle("Auto Farm Coins", false, function(state) getgenv().AutoFarmCoins = state if state then AutoFarmCoinsLoop() end end) getgenv().SpeedHackEnabled = false local function ApplySpeed() local lp = game.Players.LocalPlayer if lp.Character then local humanoid = lp.Character:FindFirstChild("Humanoid") if humanoid then if getgenv().SpeedHackEnabled then humanoid.WalkSpeed = 50 else humanoid.WalkSpeed = 16 end end end end game.Players.LocalPlayer.CharacterAdded:Connect(function(char) task.wait(0.5) ApplySpeed() end) Window:Toggle("Speed Hack", false, function(state) getgenv().SpeedHackEnabled = state ApplySpeed() end) Window:Button("Fly Hack", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-FLY-GUI-V11-205450"))() end) Window:Label("Made by Username_error1404") task.wait(1) ApplySpeed()