Custom Loading screen

Hello i have made a loading script it is fast and clean Please add this in starter gui The rescores need to add are a sprit a frame a gui

script.Parent:RemoveDefaultLoadingScreen()

script.LoadingScreen:Clone().Parent = game.Players.LocalPlayer:WaitForChild(“PlayerGui”)

Moving onto the core script

local blur = Instance.new(“BlurEffect”, game.Lighting)

local loadingBar = script.Parent.Frame.Frame.LoadingBar

wait(1,math.random(1,3))

loadingBar.LoadingBar:TweenSize(UDim2.new(0.642, 0, 1, 0), “Out”, “Quint”, 0.3, true)

wait(2)

repeat wait() until game:IsLoaded() and game:GetService(“ContentProvider”).RequestQueueSize == 0

loadingBar.LoadingBar:TweenSize(UDim2.new(1, 0, 1, 0), “Out”, “Quint”, 0.3, true)
wait(1)

script.Parent.Frame.Frame:TweenPosition(UDim2.new(0.5, -205, 1, 50), “In”, “Quad”, 0.5, true)
game.TweenService:Create(blur, TweenInfo.new(.5, Enum.EasingStyle.Linear), {Size = 0}):Play()

wait(.5)

blur:Destroy()
script.Parent:Destroy()

Or you can just get the model from me

create.roblox.com/store/asset/17590127009

can u put ur code in code thingys so its easier to read for other people pls

like this
1 Like
script.Parent:RemoveDefaultLoadingScreen()

script.LoadingScreen:Clone().Parent = game.Players.LocalPlayer:WaitForChild(“PlayerGui”)

Moving onto the core script

local blur = Instance.new(“BlurEffect”, game.Lighting)

local loadingBar = script.Parent.Frame.Frame.LoadingBar

wait(1,math.random(1,3))

loadingBar.LoadingBar:TweenSize(UDim2.new(0.642, 0, 1, 0), “Out”, “Quint”, 0.3, true)

wait(2)

repeat wait() until game:IsLoaded() and game:GetService(“ContentProvider”).RequestQueueSize == 0

loadingBar.LoadingBar:TweenSize(UDim2.new(1, 0, 1, 0), “Out”, “Quint”, 0.3, true)
wait(1)

script.Parent.Frame.Frame:TweenPosition(UDim2.new(0.5, -205, 1, 50), “In”, “Quad”, 0.5, true)
game.TweenService:Create(blur, TweenInfo.new(.5, Enum.EasingStyle.Linear), {Size = 0}):Play()

wait(.5)

blur:Destroy()
script.Parent:Destroy()

Here’s the code formatted

1 Like