Decoding loadstrings and requires?

Maybe use the ID in google with the Roblox Key to find the modulescript in the inventory of the creator? This only works if the creator allow strangers to see its inventory. If the creator has some malicious scripts, then i’m in doubt about it. Else you can import the ModuleScript using this little Code here:

--Using Luau
local ID:number = YourId
local URL:string = "rbxassetid://"..ID
local MaliciousScript = game:GetObjects(URL)[1]

Source:
https://developer.roblox.com/en-us/api-reference/function/DataModel/GetObjects

This is for ModuleScripts, for the loadstrings function you need to look the function self, you can TRY to use breakpoints if the loadstrings argumeter is stored in a variable, else idk.

Hope this helps

3 Likes