[How-To] Set an external website as loadingscreen

:tada: Hey and welcome to my first How-To!

Today I’ll show you how to set an external website as a loading screen!

  1. First you have to create a new folder in your “resource” folder! Then in this folder you have to create a “fxmanifest.lua” file! In this file you then insert the following content:
fx_version "adamant"
game "gta5"

files {
    'index.html',
}

loadscreen 'index.html'
  1. If you did that, now you have to create an “index.html” in the same folder! In the “index.html” file you now insert the following content:
<!DOCTYPE html>
<html>
<head>
   <meta http-equiv="refresh" content="0; url=[URL]">
</head>
</html>
  1. Now you just have to replace the “[URL]” in the index.html with the link of the external website! If you have done everything right, the external website of your choice should appear when you join!

Feel free to leave a comment if you have any questions!
~KnifyDodo

3 Likes