Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --camera shake script not made by me
- local StartTime = tick()
- repeat
- wait()
- local EndTime = tick()
- local xOffset = math.random(-100, 100) / 200
- local yOffset = math.random(-100, 100) / 200
- local zOffset = math.random(-100, 100) / 200
- humanoid.CameraOffset = Vector3.new(xOffset, yOffset, zOffset)
- until EndTime - StartTime >= 3
- humanoid.CameraOffset = Vector3.new(0,0,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement