ReplicatedFirst (首先復制)

ReplicatedFirst 是一個用於在玩家加入遊戲時立即發送資源和腳本的特殊區域,甚至在遊戲的其他部分加載之前。

它用於在遊戲的其餘部分仍在加載時向玩家顯示加載屏幕或初始說明。

local ReplicatedFirst = game:GetService("ReplicatedFirst")
local Players = game:GetService("Players")

local player = Players.LocalPlayer 
local playerGui = player:WaitForChild("PlayerGui")

local screenGui = Instance.new("ScreenGui")
screenGui.IgnoreGuiInset = true
screenGui.Parent = playerGui

local textLabel = Instance.new("TextLabel", screenGui)
textLabel.Size = UDim2.new(1, 0, 1, 0)
textLabel.BackgroundColor3 = Color3.new(1, 1, 1)
textLabel.Font = Enum.Font.GothamSemibold
textLabel.TextColor3 = Color3.new(0.8, 0.8, 0.8)
textLabel.Text = "Loading...."
textLabel.TextSize = 28

ReplicatedFirst:RemoveDefaultLoadingScreen()

if not game:IsLoaded() then
    game.Loaded:Wait()
end

wait(2)  -- Minimum wait time to show the screen
screenGui:Destroy()
Image 1
Roblox Studio