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

I'm not able to run this outside of studio. Help me please?

Asked by
Irvene 5
10 years ago

So I tried filtering enabled, this is a gamescript it's not supposed to be in starterpack, or it'd run as much as the number of players there are in the game, since it's local to every player.

It just doesn't run, and it won't insert the GUIs into the players.

01wait(3)
02 
03ScreenGui = Instance.new("ScreenGui")
04 
05Background = Instance.new("Frame")
06Background.ZIndex = 1
07Background.Size = UDim2.new( 0, 0, 0, 0)
08Background.Position = UDim2.new( 0, 0, 0, 0)
09Background.Transparency = 0.5
10Background.BackgroundColor3 = Color3.new(72/255,72/255,72/255)
11 
12StarterMenu = Instance.new("ScrollingFrame")
13StarterMenu.ZIndex = 3
14StarterMenu.Size = UDim2.new( 0, 250, 0, 150)
15StarterMenu.Position = UDim2.new( 0.5, 0, 0.5, 0)
View all 42 lines...

Answer this question