Hello, i want to make a Scrolling Text but it should wait for Disappears until the text is no more Visible can someone Help me? Thank You!
script.Parent:GetAttributeChangedSignal("Eingeschaltet"):Connect(function()
if script.Parent:GetAttribute("Eingeschaltet") == true then
script.Parent.Enabled = true
script.Parent.Lauftext.Position = UDim2.new(1,0)
else
script.Parent.Enabled = false
end
end)
while true do
script.Parent.Lauftext.Position = UDim2.new(1,0)
wait(0.1)
script.Parent.Lauftext:TweenPosition(UDim2.new(-1,0), "InOut", "Linear", script.Parent.Lauftext.AbsoluteSize.X / 40, false)
wait(10000)
end