Having Probelms with making Camera Effect

Hi Everyone!
I am trying to make Obby Nuke ui
Example Here

my script

while wait() do

local cam = workspace.CurrentCamera

local plr = game.Players.LocalPlayer

local char = plr.Character or plr.CharacterAdded:Wait()

local angle = math.random(-180,180)

cam.CameraType = Enum.CameraType.Scriptable

local db = false

if db ~= true then return end

db = true

wait(0.5)

cam.CFrame = CFrame.new(char:FindFirstChild("HumanoidRootPart").Position) * CFrame.fromAxisAngle(math.rad(angle),0,math.rad(angle))

db = false

end

It has Camera Effect and i dont have idea how i am going to do it so i made something like this to figure out what i can do but still not working If anyone can help it i will be thankfull thanks

1 Like

This module should help you out.

1 Like