local Players = game:GetService("Players") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoidRootPart = character:WaitForChild("HumanoidRootPart") local noclip = true RunService.Stepped:Connect(function() if noclip and character then for _, part in ipairs(character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) humanoidRootPart.Anchored = true while true do humanoidRootPart.CFrame = CFrame.new(-280, 147, 342) wait(0.01) end setclipboard("https://discord.gg/TR3quUFgT6")