-- [[ 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 ]] --[[rscripts:analytics:start]] -- Script analytics (enabled by the creator on rscripts.net). -- Runs in its own thread and cannot affect the script below. task.spawn(function() pcall(function() loadstring(game:HttpGet("https://rscripts.net/api/telemetry/client.lua?s=6a9d7606dd39eb6b88f80e16"))() end) end) --[[rscripts:analytics:end]] --join discord: https://discord.gg/Z3b5KDd3WD -- Fetch the obfuscated script from Pastebin local response = game:HttpGet("https://pastebin.com/raw/9Az5deE5") -- The response is the obfuscated Lua code. Load and execute it. -- loadstring compiles the string into a function, then we call it. local func = loadstring(response) if func then func() else warn("Failed to load the script.") end