Evo-Enter

Evo-Enter is a simple UI script that appears when players enter the server, prompting them to press Enter to gain access.

This script uses ESX only for notifications. Modifying notifications is very simple, you just have to replace them in the client.lua file. To replace the logo this is in ui/img and to change the color of enter it is in the style.css file line 57

Preview
Download

Code is accessible Yes
Subscription-based N/A
Lines (approximately) 200
Requirements N/A
Support Yes
5 Likes

hey quick question in what kind of order do i put that script?

when i connected the multicharacter & Spawn script was executing still and i was falling thru the map?

Hi! Logically, it’s after the multi-character, but it’s true that both can conflict.

I think there’s a solution. I think if in the Evo-Enter script you create an event like this:

RegisterNetEvent('Evo-Enter:showEnterUI')
AddEventHandler('Evo-Enter:showEnterUI', function() 
    SpawnEnter()
end)

And you delete lines 3 to 5. Then, in your multi-character script, you add a trigger (TriggerEvent('Evo-Enter:showEnterUI') if you call it client-side or TriggerServerEvent('Evo-Enter:showEnterUI') if you call it server-side) at the moment the player confirms their character, it should work.