Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Cutscene Editor

Asked by 10 years ago

How can you make it so that, instead of stepping on the cutscene, and having it only show up under your screen, that you touch the button, and it shows up under all players' screens? I'm trying to make it so that whenever I hit a wrestling video/entrance box, that a cutscene shows up during the entrance.

1 answer

Log in to vote
0
Answered by
Shawnyg 4330 Trusted Badge of Merit Snack Break Moderation Voter Community Moderator
10 years ago

Simply add/replace this in your script.

gui = DefinePathHere
plrs = game.Players:GetChildren()
for i,v in pairs(plrs) do
gui:clone().Parent = v.PlayerGui
end
Ad

Answer this question