I have a script, it makes a frame and then the frames parent becomes the player's PlayerGui. How could i make it so that it goes into ALL of the player's PlayerGui? Is it even possible? !!!THIS IS NOT A REQUEST, I AM NOT ASKING FOR THE SCRIPT, JUST IF IT IS POSSIBLE AND HOW YOU WOULD DO IT!!! Please help! Thank you!
Yup, it's possible. We are going to need to use some sort of loop to do it though. Here's how I would do it:
for a,v in pairs(game.Players:GetChildren()) do Frame:Clone().Parent=v.PlayerGui end
If you don't understand how this loop works, you can read about it here.