local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Turtle-Brand/Turtle-Lib/main/source.lua"))() local Window = Library:Window("Cheese Escape") Window:Label("Chr 1") Window:Button("Get All Cheese", function() local AddCheese = game:GetService("ReplicatedStorage"):FindFirstChild("AddCheese") if not AddCheese then warn("AddCheese remote not found") return end for i = 1, 9 do AddCheese:FireServer() pcall(function() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Script", Text = "Collected " .. i .. " cheese", Duration = 3 }) end) task.wait(0.1) end end) Window:Button("Teleport to Exit", function() local Player = game:GetService("Players").LocalPlayer local Character = Player.Character or Player.CharacterAdded:Wait() local HRP = Character:WaitForChild("HumanoidRootPart") HRP.CFrame = CFrame.new(-280.25, 4.19, -125.55) end) Window:Label("Chr 2") Window:Button("Get All Cheese (Chr 2)", function() local AddCheese = game:GetService("ReplicatedStorage"):FindFirstChild("AddCheese") if not AddCheese then warn("AddCheese remote not found") return end for i = 1, 12 do AddCheese:FireServer() pcall(function() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Script", Text = "Collected " .. i .. " cheese", Duration = 3 }) end) task.wait(0.1) end end) Window:Button("Teleport to Exit (Chr 2)", function() local Player = game:GetService("Players").LocalPlayer local Character = Player.Character or Player.CharacterAdded:Wait() local HRP = Character:WaitForChild("HumanoidRootPart") HRP.CFrame = CFrame.new(-163.61, 8.83, -139.29) end) Window:Label("Chr 3") Window:Button("Get All Cheese (Chr 3)", function() local AddCheese = game:GetService("ReplicatedStorage"):FindFirstChild("AddCheese") if not AddCheese then warn("AddCheese remote not found") return end for i = 1, 15 do AddCheese:FireServer() pcall(function() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Script", Text = "Collected " .. i .. " cheese", Duration = 3 }) end) task.wait(0.1) end end) Window:Button("Teleport to Exit (Chr 3)", function() local Player = game:GetService("Players").LocalPlayer local Character = Player.Character or Player.CharacterAdded:Wait() local HRP = Character:WaitForChild("HumanoidRootPart") HRP.CFrame = CFrame.new(49.55, 7.17, -48.01) end) Library:Keybind(Enum.KeyCode.RightControl)