-- https://discord.gg/KM5gjVqW -- we will never have keys :) loadstring(game:HttpGet("https://raw.githubusercontent.com/Jam103938/sole-hub/refs/heads/main/dead%20rails.lua"))() -- keybind to toggle noclip is U local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local noclip = false LocalPlayer.CharacterAdded:Connect(function(char) Character = char end) local function onStepped() if noclip and Character then for _, part in pairs(Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end UserInputService.InputBegan:Connect(function(input, gameProcessed) if not gameProcessed and input.KeyCode == Enum.KeyCode.U then noclip = not noclip if noclip then print("Noclip ON – free noclip source code because I was too lazy to add it onto the GUI (I forgot)") else print("Noclip OFF") end end end) RunService.Stepped:Connect(onStepped)