Basically I'm try to make a random tip generator as efficient as possible where I can add tips in without changing the script. here is what I got
Tips=script.Parent.Holder Words=script.Parent.Tip.Text randomizer=math.random(1,5) Words= --This is where I am having trouble. script.Parent.Parent:TweenPosition(UDim2.new(0.5, 0, 0.5, 0), "Out", "Sine", 1, true) --ignore this tween, it works just fine wait(1)
and if you'd like a picture of the values: http://imgur.com/NwtkbWS
Well you can always have a table of tips that continuously displays them
--Table of tips to loop through words = { "Tip1" } --Continuously looping through and printing tips coroutine.resume(coroutine.create(function() while true do wait() for i,v in pairs(words) do print(v) end end end))