I want to make a screen where anyone can see it, but it wont show up on others when I play with test. Also I’m new here and starting posting, this is my first post.
The issue is the “while” loop inside the first “for” loop. When you have an infinite while loop inside a script, the script will get stuck on that loop forever, never running the rest of your code. To avoid this, you can use the “spawn” function. The spawn function takes another function and runs it in a different thread, which prevents it from interrupting the rest of your script. Here is how you can use it (replace the while loop with this):
spawn(function()
while task.wait() do
-- The code in the original loop
end
end)