-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] loadstring([[ local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local function MakeInvisible(char) if not char then return end for _, v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.Transparency = 1 v.CanCollide = false elseif v:IsA("Decal") or v:IsA("Texture") then v.Transparency = 1 end end -- Remove accessories for _, v in pairs(char:GetChildren()) do if v:IsA("Accessory") or v:IsA("Hat") then v:Destroy() end end end -- Apply now if LocalPlayer.Character then MakeInvisible(LocalPlayer.Character) end -- Re-apply on respawn LocalPlayer.CharacterAdded:Connect(function(char) task.wait(0.4) MakeInvisible(char) end) print("[Delta] Invisible script loaded successfully") ]])()