How to make a camerashaker

Just trying to make camera shaker and dk how to shake the screen

1 Like

Keeping it as simple as possible, this worked pretty well for me:

--A LocalScript located in StarterCharacterScripts
local INTENSITY = 0.25
local humanoid = script.Parent:WaitForChild("Humanoid")

while humanoid do
	local randV3 = Vector3.new(math.random()-0.5, math.random()-0.5, math.random()-0.5)
	humanoid.CameraOffset = (2*INTENSITY) * randV3
	task.wait(0.06)
end
1 Like