We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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'))()
The text was updated successfully, but these errors were encountered:
TERIHAX
No branches or pull requests
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'))()
The text was updated successfully, but these errors were encountered: