Hi, I wanted you to help me with something, I have a script that should make a UI visible only to me, but for some reason people ONLY SEE THE UI if you restart the character, but I don’t understand why. Here the script I use:
local Player = game:GetService("Players"):GetPlayerByUserId(327893153)
local gui = script.Parent.Frame
if Player then
gui.Visible = true
else
gui.Visible = false
end
(I speak Spanish, sorry for the bad English) I don’t know if I put it in the correct category, if I’m wrong, please correct me.