hi, so my shake script isnt working
more specifically, it works on a localscript, but not a serverscript.
the code im working with:
for i = 1, 20 do
local x = math.random(-100,100)/100
local y = math.random(-100,100)/100
local z = math.random(-100,100)/100
Humanoid.CameraOffset = Vector3.new(x,y,z)
print(i)
wait()
end
(humanoid is specified earlier in the LONG script)
anyone have an idea whats causing it not to work?