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

Why is there an bug on Loading Screen script?

Asked by
davness 376 Moderation Voter
10 years ago
01script.Parent:RemoveDefaultLoadingScreen()
02 
03local screen = Instance.new("ScreenGui")
04screen.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
05screen.Name = "LoadingScreen"
06 
07local F = Instance.new("Frame")
08F.Parent = screen
09F.Active = true
10F.BackgroundColor3 = Color3.new(75/255, 75/255, 75/255)
11F.BackgroundTransparency = 0
12F.Size = UDim2.new({1, 0},{1, 0})
13F.Zindex = 1
14F.Visible = true
15 
View all 70 lines...

Supposly, it should create a Loading Screen that have a logo and a turning wheel. When it finished loading, it would say that i will enter the game in few seconds.

But the line 65 thrown me a error. What's wrong???

0
It would help if you provided the type of error you are getting. Necrorave 560 — 10y
0
Expected 'then', got '=' davness 376 — 10y

1 answer

Log in to vote
0
Answered by
yumtaste 476 Moderation Voter
10 years ago

When you're trying to compare variables, you use two equal signs (==). When you are setting a variable, you use one equal sign (=). On line 65, the game thinks you tried to set RequestQueueSize, so it threw an error. Just add another equal sign and it should work.

Ad

Answer this question