--[[ CrszScripts - Slime Keyboard Escape All-in-One ]] local Players = game:GetService("Players") local Workspace = game:GetService("Workspace") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer local AutoSpeed = false local farmEnabled = false local AutoRebirth = false local targetPartName = "Button13" -- Remote ve Function Bulucular local function getRemote(name) for _, v in pairs(ReplicatedStorage:GetDescendants()) do if v:IsA("RemoteEvent") and v.Name:lower():find(name:lower()) then return v end end return nil end -- UI Tasarımı local ScreenGui = Instance.new("ScreenGui", game:GetService("CoreGui")) ScreenGui.Name = "CrszScripts" local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 220, 0, 230) MainFrame.Position = UDim2.new(0.35, 0, 0.4, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) MainFrame.Active = true MainFrame.Draggable = true local Title = Instance.new("TextLabel", MainFrame) Title.Size = UDim2.new(1, 0, 0, 35) Title.Text = "CrszScripts" Title.TextColor3 = Color3.fromRGB(0, 255, 150) Title.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Title.Parent = MainFrame local function createBtn(text, pos) local btn = Instance.new("TextButton", MainFrame) btn.Text = text btn.Size = UDim2.new(0.9, 0, 0, 45) btn.Position = pos btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) btn.TextColor3 = Color3.new(1,1,1) return btn end local SpeedBtn = createBtn("Auto Speed: KAPALI", UDim2.new(0.05, 0, 0.20, 0)) local FarmBtn = createBtn("Farm: KAPALI", UDim2.new(0.05, 0, 0.42, 0)) local RebirthBtn = createBtn("Auto Rebirth: KAPALI", UDim2.new(0.05, 0, 0.64, 0)) -- Buton Mantıkları SpeedBtn.MouseButton1Click:Connect(function() AutoSpeed = not AutoSpeed SpeedBtn.Text = AutoSpeed and "Auto Speed: AÇIK" or "Auto Speed: KAPALI" SpeedBtn.BackgroundColor3 = AutoSpeed and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(40, 40, 40) end) FarmBtn.MouseButton1Click:Connect(function() farmEnabled = not farmEnabled FarmBtn.Text = farmEnabled and "Farm: AÇIK" or "Farm: KAPALI" FarmBtn.BackgroundColor3 = farmEnabled and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(40, 40, 40) end) RebirthBtn.MouseButton1Click:Connect(function() AutoRebirth = not AutoRebirth RebirthBtn.Text = AutoRebirth and "Auto Rebirth: AÇIK" or "Auto Rebirth: KAPALI" RebirthBtn.BackgroundColor3 = AutoRebirth and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(40, 40, 40) end) -- Ana Döngüler RunService.RenderStepped:Connect(function() if AutoSpeed then local clickRemote = getRemote("click") or getRemote("speed") if clickRemote then clickRemote:FireServer() end local hum = LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") if hum then hum.WalkSpeed = 500 end end end) task.spawn(function() while true do if farmEnabled then local folder = Workspace:FindFirstChild("GiveWins") local target = folder and folder:FindFirstChild(targetPartName) local touchPart = target and target:FindFirstChild("Touch") if touchPart and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = touchPart.CFrame end end if AutoRebirth then pcall(function() local RebirthFunction = ReplicatedStorage:WaitForChild("Events"):FindFirstChild("RequestRebirth") if RebirthFunction then RebirthFunction:InvokeServer() end end) end task.wait(0.5) end end)