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

What is ReplicatedFirst used for?

Asked by 9 years ago

I think it has something to do with a loading gui, but I am unsure. Any ideas?

1 answer

Log in to vote
0
Answered by 9 years ago

A container whose contents are replicated to all clients (but not back to the server) first before anything else. Useful for creating loading guis, tutorials, etc.

This example uses GetService to get ReplicatedFirst, then runs the :RemoveDefaultLoadingScreen method to remove the loading screen.

local RF = game:GetService("ReplicatedFirst")
RF:RemoveDefaultLoadingScreen()
-- Should remove the "Loading..." ROBLOX startup.

http://wiki.roblox.com/index.php?title=API:Class/ReplicatedFirst

0
ooh I see. So will this remove to roblox loading screen when I use the RemoveDefaultLoadingScreen() and be able to replace that with mine if script it? nighttimeninja314 120 — 9y
1
You should note that the default loading screen will appear for a second because the loading screen loads before anything else is loaded. It will be removed when ReplicatedFirst gets loaded. Sparker22 190 — 9y
Ad

Answer this question