How can I make a camera shake effect that works first person and third person? I’ve tried rapidly changing the cameras orientation but it just seems choppy and really bad. If u know tell me!
Cant you just manipulate the CameraOffset
inside the Player’s Humanoid?
Im trying to create my own camera shaker
Here is an Example of a simple Camera shake:
StarterCharacterScripts
local TweenService = game.TweenService
local Plr = game.Players.LocalPlayer
local Char = script.Parent
local hum = Char:FindFirstChildOfClass("Humanoid")
while wait() do
if hum then
TweenService:Create(hum, TweenInfo.new(0.1), {CameraOffset = Vector3.new(math.random(0.1,1),math.random(0.1,1),math.random(0.1,1))}):play()
end
end
I’ve seen that Shaker before in Unity it’s been around for a decade, has never failed. Good luck!
Im going to try this when im back home
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.