Like death said in his comment, simply change every instance of script.Parent.Position = Vector3.new
to script.Parent.CFrame = CFrame.new
to stop it jumping on top of the the Player.
The reason it's stopping, however, is because each of those loops is set to only run once. When the brick gets Touched by any part (you should always do a sanity check to see if a Character touched it, by checking if Game.Players:GetPlayerFromCharacter(hit.Parent)
returns anything), the first loop ends and the second begins. When the brick stops being Touched by any part (not just the one that first Touched it), the second loop will end and the script will then end.
Try using just this:
3 | local a = math.random( 3 , 3 ) |
4 | script.Parent.Size = Vector 3. new(script.Parent.Size.X, a, script.Parent.Size.Z) |
5 | script.Parent.CFrame = CFrame 3. new(script.Parent.Position.X, (a / 2 ) , script.Parent.Position.Z) |
(By the way, those bars aren't moving randomly in that video: they each represent the volume of a short band of frequencies of sound being played in the song at that moment. IIRC, the lower pitches are on the left, and the higher on the right.)