#Loading Screen
71 messages · Page 1 of 1 (latest)
still not the best but try this :
local loading = script.Loading
local dot1 = loading.Main.Dots.one
local dot2 = loading.Main.Dots.two
local dot3 = loading.Main.Dots.three
local color = Color3.fromRGB(0, 255, 0)
local stepps = 20
script.Loading.Enabled = true
wait(1.5)
dot1.BackgroundColor3 = color
wait(1.5)
dot2.BackgroundColor3 = color
wait(1.5)
dot3.BackgroundColor3 = color
script.Main.Enabled = true
for i=1,stepps do
loading.Transpareny = i/stepps
end
wait(5)
script.Loading.Enabled = false
Miss Spelled Transparency
** You are now Level 1! **
loading.Main.Transparency
doesnt transparency also change the transparency of its children?
uhh
no
wait mb
thats wrong
this is correct
try
for _,frame in pairs(loading:GetChildren()) do
if frame:IsA('Frame') then
frame.Transparency = i/stepps
end
wait
yea inside
you need to set i
i is nil
nil/20 = error
** You are now Level 2! **
a bro
@nocturne brook ?
try this one
OH IM STUPIDD
lemme fix rq
for i = 1,stepps do
for _,frame in pairs(loading:GetChildren()) do
if frame:IsA('Frame') then
frame.Transparency = i/stepps
end
end
end
worked ?
or no ?
is the same i think
GetDescendants getting all things inside
the dots are in a extra frame
oh rlly
im braindead
.-.
local loading = script.Loading
local dot1 = loading.Main.Dots.one
local dot2 = loading.Main.Dots.two
local dot3 = loading.Main.Dots.three
local color = Color3.fromRGB(0, 255, 0)
local stepps = 20
script.Loading.Enabled = true
wait(1.5)
dot1.BackgroundColor3 = color
wait(1.5)
dot2.BackgroundColor3 = color
wait(1.5)
dot3.BackgroundColor3 = color
script.Main.Enabled = true
for i = 1,stepps do
for _,frame in pairs(loading:GetDescendants()) do
if frame:IsA('Frame') then
frame.Transparency = i/stepps
end
end
end
wait(5)
script.Loading.Enabled = false
wait
also TextLables?
** You are now Level 6! **
local loading = script.Loading
local dot1 = loading.Main.Dots.one
local dot2 = loading.Main.Dots.two
local dot3 = loading.Main.Dots.three
local color = Color3.fromRGB(0, 255, 0)
local stepps = 20
script.Loading.Enabled = true
wait(1.5)
dot1.BackgroundColor3 = color
wait(1.5)
dot2.BackgroundColor3 = color
wait(1.5)
dot3.BackgroundColor3 = color
script.Main.Enabled = true
for i = 1,stepps do
for _,frame in pairs(loading:GetDescendants()) do
if frame:IsA('Frame') or frame:IsA('UIStroke') or frame:IsA('TextLabel') then
frame.Transparency = i/stepps
end
end
end
wait(5)
script.Loading.Enabled = false
oh we missed a task.wait(.1)
ive put the wait in to the wrong place
local loading = script.Loading
local dot1 = loading.Main.Dots.one
local dot2 = loading.Main.Dots.two
local dot3 = loading.Main.Dots.three
local color = Color3.fromRGB(0, 255, 0)
local stepps = 20
local DisTime = .5
script.Loading.Enabled = true
wait(1.5)
dot1.BackgroundColor3 = color
wait(1.5)
dot2.BackgroundColor3 = color
wait(1.5)
dot3.BackgroundColor3 = color
script.Main.Enabled = true
for i = 1,stepps do
for _,frame in pairs(loading:GetDescendants()) do
if frame:IsA('Frame') or frame:IsA('UIStroke') or frame:IsA('TextLabel') then
frame.Transparency = i/stepps
end
end
task.wait(DisTime/stepps)
end
wait(5)
script.Loading.Enabled = false
i think there is just a transparent textlable in there
no
visible does
bro
u dont
** You are now Level 1! **