Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why doesnt this work???

Asked by 10 years ago
game.Players.PlayerAdded:connect(function(player)
    script.Disabled = false
    wait(6)
    script.Disabled = true
end)
wait(3)
    script.Parent.ImageTransparency = 0.1
    wait(0.1)
    script.Parent.ImageTransparency = 0.2
    wait(0.1)
    script.Parent.ImageTransparency = 0.3
    wait(0.1)
    script.Parent.ImageTransparency = 0.4
    wait(0.1)
    script.Parent.ImageTransparency = 0.5
    wait(0.1)
    script.Parent.ImageTransparency = 0.6
    wait(0.1)
    script.Parent.ImageTransparency = 0.7
    wait(0.1)
    script.Parent.ImageTransparency = 0.8
    wait(0.1)
    script.Parent.ImageTransparency = 0.9
    wait(0.1)
    script.Parent.ImageTransparency = 1
    script.Parent.Visible = false
    wait(0.3)
    script.Parent.Parent.RobloxLuaLogo.Visible = true
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.9
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.8
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.7
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.6
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.5
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.4
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.3
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.2
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.1
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0
    wait(2)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.1
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.2
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.3
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.4
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.5
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.6
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.7
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.8
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 0.9
    wait(0.1)
    script.Parent.Parent.RobloxLuaLogo.ImageTransparency = 1
    script.Parent.Parent.White.Visible = false

Help me please

0
Line 6-68 works, but why doesn't 1-5 work??? So confused DevScripting 92 — 10y
0
First, I don't know why you're Disabling the script.. Try removing those 2 lines. Second, move the "end)" to the bottom of the whole script. Shawnyg 4330 — 10y
0
It's in the StarterGui, and this this a local scripts obviously if you read the tags :P DevScripting 92 — 10y
0
ok make a gui that only plays when a player enters, and ONLY THE FIRST TIME THEY ENTER DevScripting 92 — 10y

Answer this question