Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

(SOLVED) How to make a box glow as it gets bigger and get bigger and smaller?

Asked by
VVTF_RU 18
4 years ago
Edited 4 years ago

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.

0
trust me I was looking around for long enough for how you would find it and I cant find it VVTF_RU 18 — 4y
1
The reason it keeps getting closed is because this is not a request site. You should be making your own effort and leaving code snippet in here for us to edit. CreationNation1 459 — 4y
0
I could not agree more with CreationNation. You need to actually put in REAL effort. I think it is unclear to you what we mean by this, but essentially, you need to sit down in front of the computer for many hours at a time and watch an entire playlist of scripting tutorials, and then, for many hours more you need to apply and practice the knowledge gained from those tutorials. 123marble 61 — 4y
0
Currently you are lacking even a basic understanding of the fundamentals which makes it near impossible for anyone on this site to actually provide a comprehensive enough answer that will HELP you. We ARE here to HELP, but first you must help yourself! If you are serious about learning then I would recommend peasfactory or alvinblox's beginner scripting tutorials. 123marble 61 — 4y
0
Ok, I'm sorry I didn't understand that, when this site said this is not a request site I thought it ment like don't ask for free models or something. Also by the way alvin blox's code is really bad from what I've heard. VVTF_RU 18 — 4y

2 answers

Log in to vote
0
Answered by
iHavoc101 127
4 years ago

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()
0
I was confused at first but I got my brother to help a little and we got it working, Thanks! VVTF_RU 18 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

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 :)

Answer this question