Ok, so i'm trying to make it update automatically to the persons res, but it just disapears when I do this!
local times = 5
local texts = script.Parent
local textm = "Welcome to my game"
local tween = script.Parent.Parent.AbsoluteSize.X
function Sleep(timetosleep)
wait(timetosleep)
end
while true do
script.Parent.Size = UDim.new(0, tween, 0, 20)
texts.Text = "Guest Block by, xXScriptzXx (INC.)" --Im making a guest block
Sleep(times)
texts.Text = textm
Sleep(times)
end |