01 | script.Parent:RemoveDefaultLoadingScreen() |
02 |
03 | local screen = Instance.new( "ScreenGui" ) |
04 | screen.Parent = game.Players.LocalPlayer:WaitForChild( "PlayerGui" ) |
05 | screen.Name = "LoadingScreen" |
06 |
07 | local F = Instance.new( "Frame" ) |
08 | F.Parent = screen |
09 | F.Active = true |
10 | F.BackgroundColor 3 = Color 3. new( 75 / 255 , 75 / 255 , 75 / 255 ) |
11 | F.BackgroundTransparency = 0 |
12 | F.Size = UDim 2. new( { 1 , 0 } , { 1 , 0 } ) |
13 | F.Zindex = 1 |
14 | F.Visible = true |
15 |
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???
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.