Stuck in GUI

My Team and I have a new Server with exs12 Base from Zaphosting. When we go into a GUI like a garage, you can interact with it and close it but then you see your cursor and you cant move, you are basically stuck.

Clip:

Hello, does the resource have the expected name from the author ? (Maybe it has -master at the end)
If you do not know the expected name, look into a js file from the NUI (or maybe in script tags from html) for a post to the script name, could be like this in jquery :

$.post('https://RESOURCE_NAME/something')

or it could be with fetch or something else

I found this in “[esx]/esx_weaponshop/html/ui.js”

$( ".close" ).click(function() {
      $('.container').css('display', 'none');
      $.post('http://prime_waffenshop/escape', JSON.stringify({}));
    });
			$(document).keyup(function (e) {
			if (e.key === "Escape") {
				$.post('http://prime_waffenshop/escape', JSON.stringify({}));
			}

Does this help, cause I don’t know how to fix it

the resource name doesn’t match so this post request is not getting through to the correct resource

The name of the resource should be prime_waffenshop

Rename your resource from esx_weaponshop to prime_waffenshop. (Or rename every prime_waffenshop to esx_weaponshop in the code)

WOW im so dumb