-- invisible but holding items ahh script local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local root = character:WaitForChild("HumanoidRootPart") -- (teleports u up a bit so u dont fall through the map while going ghost) root.CFrame = root.CFrame + Vector3.new(0, 5, 0) task.wait(0.5) -- the "iy" method: breaking the character but keeping the tool if character:FindFirstChild("LowerTorso") then -- for r15 noobs character.LowerTorso.RootJoint:Destroy() character.LowerTorso:Destroy() print("u r now a ghost vro ong πŸ‘»") elseif character:FindFirstChild("Torso") then -- for r6 old school ahh characters character.Torso.Neck:Destroy() character.Torso:Destroy() print("r6 ghost mode active fr!! πŸ₯€") end -- (making sure u can still move ur floating tool) spawn(function() while task.wait() do if not character:Parent then break end -- keeps the humanoid alive so u dont respawn immediately character.Humanoid.Health = 100 end end) -- tips for being a floating tool: -- 1. equip ur tool AFTER running the script. -- 2. u might need to "re-animate" if u want the tool to move. -- 3. if u die, just run it again son😭πŸ₯€πŸ₯€πŸ’”