script.Parent:RemoveDefaultLoadingScreen()
local screen = Instance.new("ScreenGui") screen.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
local textLabel = Instance.new("TextLabel") textLabel.Parent = screen textLabel.Text = "Loading" textLabel.Size = UDim2.new(1,0,1,0) textLabel.FontSize = Enum.FontSize.Size14
local count = 0 while game.ContentProvider.RequestQueueSize > 0 do textLabel.Text = "Loading " .. string.rep(".",count) count = (count + 1) % 4 wait(.3) end
screen.Parent = nil
Is this right or wrong I've used it a lot but its still not working idk what to do, can any of you guy's please help me?
script.Parent:RemoveDefaultLoadingScreen() local screen = Instance.new("ScreenGui") screen.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local textLabel = Instance.new("TextLabel") textLabel.Parent = screen textLabel.Text = "Loading" textLabel.Size = UDim2.new(1,0,1,0) textLabel.FontSize = Enum.FontSize.Size14 local count = 0 while game.ContentProvider.RequestQueueSize > 0 do textLabel.Text = "Loading " .. string.rep(".",count) count = (count + 1) % 4 wait(.3) end screen.Parent = nil
This is a code Block. BTW THIS IS NOT AN ANSWER SO PLEASE DO NOT DOWN VOTE ME!