player.PlayerGui.ScreenGui.Frame.Visible=false player.PlayerGui.ScreenGui.ARROW.Visible=false player.PlayerGui.ScreenGui.CONVERSION.Visible=false
I did this and this error showed up at the output
You have to define the Player. The way to do this in a local script would be:
Players = game:GetService("Players") local Player = Players.LocalPlayer
Hope this helps.