How to Use Ez Camera Shaker HELP

Hi im Tunnells i have really wanted to learn how to use ez camera shaker Im using the one With remoteEvents but Im prettty sure i cant use RemoteEvents on serverScripts because my live event Is on a serverscript and how would i fire a remoteevent like that?

The event looks like this.

To use EZ Camera Shaker, use the following code:

-- Create variables:
local CameraShaker = require(game.ReplicatedStorage.CameraShaker)
local camera = game.Workspace.CurrentCamera

-- Create CameraShaker instance:
local camShake = CameraShaker.new((Enum.RenderPriority.Camera.Value + 1), function(shakeCf)
      camera.CFrame = camera.CFrame * shakeCf
end)

-- Start instance:
camShake:Start()

-- Apply explosion shakes every 5 seconds:
while true do
   wait(5)
   camShake:Shake(CameraShaker.Presets.Explosion)
end

You can use RemoteEvents simply by firing them on the client:

oops forgot to reply again :upside_down_face:

2 Likes