i can’t find IgnoreGuiInset for my game, and i tried a script:
game.StarterGui.ScreenGui.IgnoreGuiInset = true
and i tried UDim2, Boolean, Vector2 but nothing
i can’t find IgnoreGuiInset for my game, and i tried a script:
game.StarterGui.ScreenGui.IgnoreGuiInset = true
and i tried UDim2, Boolean, Vector2 but nothing
You are changing a value of the StarterGui object which is not the correct one, you have to change a value of a GUI located inside the Playergui folder.
Try this:
For a LocalScript:
game.Players.LocalPlayer.PlayerGui.ScreenGui.IngnoreGuiInset = true
For a Script:
game.Players.PlayerAdded:Connect(function(player)
player.PlayerGui.ScreenGui.IngnoreGuiInset = true
end)
You can also set the property IngoreGuiInset by default selecting the ScreenGui in the StarterGui and checking the box called IngnoreGuiInset.
this is the problem i don’t have
Where are you checking the properties? ScreenGuis always have IgnoreGuiInset
ahhhh know i don’t have IgnoreGuiInset in properties
Could you show us a picture of the properties you’re trying to check?
wait lets me update roblox studio
This is the box you need to check.
thanks to all for responding! i appreciate it