Empty
Empty
Empty
ReplicatedFirst 是一个用于在玩家加入游戏时立即发送资源和脚本的特殊区域,甚至在游戏的其他部分加载之前。
Empty
Empty
Empty
它用于在游戏的其余部分仍在加载时向玩家显示加载屏幕或初始说明。
Empty
Empty
Empty
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()
Roblox Studio