How do you make a box that gets bigger and smaller randomly and glows more and more as its bigger?
Ok, so someone commented that this is not a request site, and I'm sorry. It took me a little while to understand but now I know, I am sorry for any trouble I may have caused. The only reason I do not take down this post is I don't wanna get rid the of reputation that developer got for answering my question.
K, answer is tweenservice,
local part = workspace.part local speed = 1 game:GetService('TweenService'):Create(part, TweenInfo.new(speed),{Size = Vector3.new(1,1,1)}):Play()
as for the glow, I'd suggest you look at: https://education.roblox.com/en-us/resources/adding-a-light-source
and then use:
local light = workspace.light lightamount = 50 local speed = 1 game:GetService('TweenService'):Create(light , TweenInfo.new(speed),{Brightness = lightamount}):Play()
Well i cant really understand what you mean, but you can use
instance.Size = Vecotr3.new(value,value,value)
and a click detector, you could also change materials to neon if you want glow? Just a thought, hope this helped :)