- What do you want to achieve? this
2. What is the issue?
I wanna get rid of this
and my game doesnt work the same way they do
External Media- What solutions have you tried so far? Ive tried looking for answers and solution but havent seen any
Here is my code
local Players = game:GetService("Players")
local ReplicatedFirst = game:GetService("ReplicatedFirst")
local player = Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")
local screenGui = ReplicatedFirst:FindFirstChild("ScreenGui"):Clone()
-- Remove the default loading screen
ReplicatedFirst:RemoveDefaultLoadingScreen()
screenGui.IgnoreGuiInset = true
screenGui.ResetOnSpawn = false
screenGui.DisplayOrder = math.huge
screenGui.Parent = playerGui
repeat wait() until game:IsLoaded()
wait(2)
-- After the game loaded
screenGui:Destroy()
Thank you in advance