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

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

1local loadingDone = game.ReplicatedStorage.loadingScreenDone
2 
3if loadingDone.Value == true then
4    script.Parent.MainFrame.Visible = true
5    script.Parent.background.Visible = true
6end

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

01local Players = game:GetService("Players")
02local ReplicatedFirst = game:GetService("ReplicatedFirst")
03local TweenService = game:GetService("TweenService")
04 
05loadingDone = game.ReplicatedStorage:GetChildren("loadingScreenDone")
06 
07 
08local player = Players.LocalPlayer
09local playerGui = player:WaitForChild("PlayerGui")
10 
11-- Create a basic loading screen
12local screenGui = Instance.new("ScreenGui")
13screenGui.IgnoreGuiInset = true
14local textLabel = Instance.new("TextLabel")
15textLabel.Size = UDim2.new(1, 0, 1, 0)
View all 42 lines...

the part where the bool value is:

1loadingDone = game.ReplicatedStorage:GetChildren("loadingScreenDone")

and

1loadingDone.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"

0
Are you using a local or server script? WideSteal321 773 — 4y
0
local script VikkiVuk 74 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

I hope I’m correct... but your script that checks if the value is true only checks ONCE. You will need to loop this, there are many ways to do this but the most simple way is just using while true do, like this:

1local loadingDone = game.ReplicatedStorage.loadingScreenDone
2while true do wait()
3if loadingDone.Value == true then
4    script.Parent.MainFrame.Visible = true
5    script.Parent.background.Visible = true
6end
7end

But... it’s still broken, this is because of how you created the variable “loadingDone”. GetChildren() gets ALL children, not one child, for this use :WaitForChild() like this:

1loadingDone = game.ReplicatedStorage:WaitForChild(“loadingScreenDone”)
0
Also note you may have to re write the second code because of how I wrote it. WideSteal321 773 — 4y
0
Don’t forget to accept the answer if it works. WideSteal321 773 — 4y
Ad

Answer this question