TERIHAX / Scripts

List of Scripts (Not Mine)
https://github.com/TERIHAX/Scripts
4 stars 0 forks source link

How to Turn Any Script Into a Loadstring #3

Open TERIHAX opened 1 year ago

TERIHAX commented 1 year ago

How to turn into a loadstring()

1. Copy the raw link:

image image

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.

image

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'))()