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

How can i make bricks move up and down automatically, like in Club Pulse?

Asked by 10 years ago

I want to make the bricks move up and down, or bounce, and change size, like they do in the game Club Pulse. How can I do that?

1 answer

Log in to vote
0
Answered by
KAAK82 16
10 years ago

if ya mean that they Move and Resize every time not even Depending on anything like Music or something, then 100% Easy. Put this Script into the Part u need to Resize or Move;

wait = 1 --How many Seconds to wait for it to Resize

while true do
    script.Parent.Size = Vector3.new(1, 1, 1) --Change the Number 1's to the Size u want
    wait(wait)
    script.Parent.Size = Vector3.new(2, 2, 2) --Again, change the Size
end

That's just the Size, I'm doing something... so as am at it, I'll also look a Better way to Move stuff Up and Down, and give u the Info.

Ad

Answer this question