--//Source code For Skiddies local Players = game:GetService("Players") local RunService = game:GetService("RunService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local lp = Players.LocalPlayer local character = lp.Character or lp.CharacterAdded:Wait() -- GUI local gui = Instance.new("ScreenGui", lp:WaitForChild("PlayerGui")) gui.Name = "Unslappable" gui.ResetOnSpawn = false -- Frame local toggleFrame = Instance.new("Frame", gui) toggleFrame.Size = UDim2.new(0, 240, 0, 160) toggleFrame.Position = UDim2.new(0.5, -120, 0.5, -80) toggleFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) toggleFrame.BorderSizePixel = 0 toggleFrame.Active = true toggleFrame.Draggable = true local corner = Instance.new("UICorner", toggleFrame) corner.CornerRadius = UDim.new(0, 12) -- Title local title = Instance.new("TextLabel", toggleFrame) title.Size = UDim2.new(1, 0, 0.25, 0) title.Position = UDim2.new(0, 0, 0, 0) title.Text = "Panel" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundTransparency = 1 title.Font = Enum.Font.GothamBold title.TextScaled = true -- CantSlap Toggle Button local toggleBtn = Instance.new("TextButton", toggleFrame) toggleBtn.Size = UDim2.new(0.8, 0, 0.25, 0) toggleBtn.Position = UDim2.new(0.1, 0, 0.3, 0) toggleBtn.Text = "Unslappable: off" toggleBtn.TextColor3 = Color3.fromRGB(255, 255, 255) toggleBtn.BackgroundColor3 = Color3.fromRGB(60, 130, 255) toggleBtn.Font = Enum.Font.GothamBold toggleBtn.TextScaled = true local btnCorner = Instance.new("UICorner", toggleBtn) btnCorner.CornerRadius = UDim.new(0, 8) -- Auto Wins Button local autoWinBtn = Instance.new("TextButton", toggleFrame) autoWinBtn.Size = UDim2.new(0.8, 0, 0.25, 0) autoWinBtn.Position = UDim2.new(0.1, 0, 0.65, 0) autoWinBtn.Text = "Auto Win" autoWinBtn.TextColor3 = Color3.fromRGB(255, 255, 255) autoWinBtn.BackgroundColor3 = Color3.fromRGB(255, 120, 40) autoWinBtn.Font = Enum.Font.GothamBold autoWinBtn.TextScaled = true local winBtnCorner = Instance.new("UICorner", autoWinBtn) winBtnCorner.CornerRadius = UDim.new(0, 8) -- Remote local remote = ReplicatedStorage:WaitForChild("Remotes", 9e9):WaitForChild("CantSlap", 9e9) -- Variables local isOn = false local autoWinOn = false local winPos = Vector3.new(-0.5713244080543518, 597.935791015625, 167.06602478027344) -- CantSlap Toggle Logic toggleBtn.MouseButton1Click:Connect(function() isOn = not isOn toggleBtn.Text = isOn and "Unslappble: On" or "Unslappble: Off" toggleBtn.BackgroundColor3 = isOn and Color3.fromRGB(0, 200, 0) or Color3.fromRGB(200, 0, 0) local args = { [1] = isOn and "On" or "Off" } remote:FireServer(unpack(args)) end) -- Auto Win Teleport Loop RunService.RenderStepped:Connect(function() if autoWinOn and lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") then lp.Character:MoveTo(winPos) end end) -- Auto Win Button autoWinBtn.MouseButton1Click:Connect(function() autoWinOn = not autoWinOn autoWinBtn.Text = autoWinOn and "Auto Win: On" or "Auto Win: Off" autoWinBtn.BackgroundColor3 = autoWinOn and Color3.fromRGB(0, 200, 0) or Color3.fromRGB(255, 120, 40) end)