Open TERIHAX opened 1 year ago
loadstring()
loadstring(game:HttpGet('
', true))()
loadstring(game:HttpGet('YOUR LINK HERE', true))()
You MUST put , true after your link because it makes it directly retrieve it from the server and not from cache.
, true
loadstring(game:HttpGetAsync('
'))()
loadstring(game:HttpGetAsync('YOUR LINK HERE'))()
How to turn into a
loadstring()
1. Copy the raw link:
The context/right click menu may look different on different browsers and operating systems.
2. Go to this link (loadstringer.mattlawz.dev) and put in the link that you copied.
Done.
3. Another way is to put
loadstring(game:HttpGet('
in front of your link and', true))()
at the end, like this:loadstring(game:HttpGet('YOUR LINK HERE', true))()
You MUST put
, true
after your link because it makes it directly retrieve it from the server and not from cache.4. This other way is probably better, put
loadstring(game:HttpGetAsync('
in front of your link and'))()
at the end, like this:loadstring(game:HttpGetAsync('YOUR LINK HERE'))()