RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Noclip script"
local player = game.Players.LocalPlayer local character = player.Character local humanoid = character:WaitForChild("Humanoid") local noclip = false local function toggleNoclip() noclip = not noclip if noclip then humanoid.WalkSpeed = 0 humanoid.JumpPower = 0 character.HumanoidRootPart.CanCollide = false else humanoid.WalkSpeed = 16 humanoid.JumpPower = 50 character.HumanoidRootPart.CanCollide = true end end game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessedEvent) if input.KeyCode == Enum.KeyCode.N then toggleNoclip() end end)