Windowed forced

Hello I have a problem
Some players on my server have this problem and it doesn’t happen to them on most servers… only on this one.
They tried to solve it in several ways but it seems that the problem lies with my server
The error is what I mark in red

This issue occurs when your UI elements expect to be a certain size and the users screen is smaller.

There are countless ways that could cause this to happen

  • The UI adds padding outside of regular screen space padding
  • The UI has a min-width or min-height set outside of the players view space
  • The UI has a width or height set that is big enough to be outside the players view space, having this set to 100% on the root element might also cause it since certain elements have default styling.
  • and many, many more, these are just what i can remember off the top of my head

Wish you luck on your hunt, you can try to use nui_devtools and inspect elements to try and find which resource is doing it, you can delete the containing iframe per resource to narrow it down. After doing that ensure the resource for it to recreate the iframe and you can fix that resources UI.

The size of the UIs doesn’t quite fit, as AvarianKnight says. To fix this temporarily, you can add the following to each css

body {
   overflow: hidden;
}

and it should disappear. However, this does not solve the problem of off-screen elements.

thanks bro!
This work

1 Like