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

Camera only moves once?

Asked by
Sublimus 992 Moderation Voter
10 years ago

Trying to cause a screen-shake, but it only shakes once?

1wait()
2camera = game.Workspace.CurrentCamera
3while true do
4    camera.Focus = camera.Focus + Vector3.new(2,2,2) -- It only does this?
5    wait(0.1)
6    camera.Focus = camera.Focus - Vector3.new(2,2,2)
7end

Answer this question