For some reason this dosen't work, what is the problem?
local introSize1 = 0 while introSize1 < 430 do introSize1 = introSize1 + 1 game.StarterGui.Intro.frameOne.Size = UDim2.new(1, 0, 0, introSize1) wait(0.1) end
Try this
local introSize1 = 0 game.Players.PlayerAdded:connect(function(p) p.PlayerGui:WaitForChild("Intro") p.PlayerGui.Intro:WaitForChild("frameOne") while introSize1 < 430 do introSize1 = introSize1 + 1 p.PlayerGui.Intro.frameOne.Size = UDim2.new(1, 0, 0, introSize1) wait(0.1) end end)
local player = game.Players.LocalPlayer repeat wait() until player.Character local gui = player.PlayerGui local introSize1 = 0 while introSize1 < 430 do introSize1 = introSize1 + 1 gui.Intro.frameOne.Size = UDim2.new(1, 0, 0, introSize1) wait(0.1) end