Need help removing/fixing Loading Screen

  1. What do you want to achieve? this
External Media External Media

2. What is the issue?
I wanna get rid of this

and my game doesnt work the same way they do

External Media
  1. What solutions have you tried so far? Ive tried looking for answers and solution but havent seen any

Here is my code
ScreenShot_20231116184454

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

1 Like

sorry that you have to download the video im using streamtable so idk why its like that

1 Like

Sorry, you cant fully delete it (p.s. it was only in old games maybe), i also tried much variants to make smooth loadingscreen transition. You can only make it shorter by

ReplicatedFirstRemoveDefaultLoadingScreen()

and put your custom screen like this:
ima231312ge

well since no one else is answering my question I guess ill give u solution

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.