Roblox Scripting | Adding an main menu after an loading screen. Help?
Asked by
4 years ago Edited 4 years ago
Hi! So i was trying to add an main menu after my custom loading screen was gone. I tried to do this in 2 different variants, one was to try and set the bool value to true and then in the main menu gui script add
1 | local loadingDone = game.ReplicatedStorage.loadingScreenDone |
3 | if loadingDone.Value = = true then |
4 | script.Parent.MainFrame.Visible = true |
5 | script.Parent.background.Visible = true |
and when i tried to enable it manually it worked! So the script in the gui works! But when i try to enable it through the LoadingScreen Script it doesnt work! Here's my LoadingScreenManager
01 | local Players = game:GetService( "Players" ) |
02 | local ReplicatedFirst = game:GetService( "ReplicatedFirst" ) |
03 | local TweenService = game:GetService( "TweenService" ) |
05 | loadingDone = game.ReplicatedStorage:GetChildren( "loadingScreenDone" ) |
08 | local player = Players.LocalPlayer |
09 | local playerGui = player:WaitForChild( "PlayerGui" ) |
12 | local screenGui = Instance.new( "ScreenGui" ) |
13 | screenGui.IgnoreGuiInset = true |
14 | local textLabel = Instance.new( "TextLabel" ) |
15 | textLabel.Size = UDim 2. new( 1 , 0 , 1 , 0 ) |
16 | textLabel.BackgroundColor 3 = Color 3. fromRGB( 0 , 20 , 40 ) |
17 | textLabel.Font = Enum.Font.GothamSemibold |
18 | textLabel.TextColor 3 = Color 3. new( 0.8 , 0.8 , 0.8 ) |
19 | textLabel.Text = "Loading..." |
20 | textLabel.TextSize = 28 |
21 | textLabel.Parent = screenGui |
22 | local loadingRing = Instance.new( "ImageLabel" ) |
23 | loadingRing.Size = UDim 2. new( 0 , 256 , 0 , 256 ) |
24 | loadingRing.BackgroundTransparency = 1 |
26 | loadingRing.AnchorPoint = Vector 2. new( 0.5 , 0.5 ) |
27 | loadingRing.Position = UDim 2. new( 0.5 , 0 , 0.5 , 0 ) |
28 | loadingRing.Parent = screenGui |
30 | screenGui.Parent = playerGui |
33 | ReplicatedFirst:RemoveDefaultLoadingScreen() |
35 | local tweenInfo = TweenInfo.new( 4 , Enum.EasingStyle.Linear, Enum.EasingDirection.In, - 1 ) |
36 | local tween = TweenService:Create(loadingRing, tweenInfo, { Rotation = 360 } ) |
40 | loadingDone.Value = true |
the part where the bool value is:
1 | loadingDone = game.ReplicatedStorage:GetChildren( "loadingScreenDone" ) |
and
1 | loadingDone.Value = true |
Also the 2 variant was to get the mainframe from the mainmenu and make it visible.
Please help!
Also dont judge me because i used the "roblox loading screen template"