#i have a problem with cam.cframe = part.cframe😭

3 messages · Page 1 of 1 (latest)

coarse bramble
#

heres the script ```lua
local player = workspace:WaitForChild("Posessed Uncle")
local Humanoid = player:WaitForChild('Humanoid')
local replicatedstorage = game.ReplicatedStorage
local remotevenet = replicatedstorage:WaitForChild("epic")
local cam = workspace:WaitForChild("Camera")
local campart = script.Parent:WaitForChild("EpicCamPart")

local function animation()
local Animation = Instance.new('Animation', Humanoid)
Animation.AnimationId = 'rbxassetid://15665340077'
local Animate = Humanoid:LoadAnimation(Animation)
Animate:Play()
cam.CFrame = campart.CFrame -- this line is what i have trouble with
script.Parent["Moving Wind"]:Play()
script.Parent["Scary Sound"]:Play()
wait(3)
player.FaceSmileB.Handle.Transparency = 0
player.Head.face:Destroy()
wait(0.53)
Animate:Stop()
script.Parent["Moving Wind"]:Stop()
script.Parent["Lifesigns a"]:Play()
player.Anima.Enabled = true
end

local function fireallclientss()
remotevenet:FireAllClients(animation())
end

wait(1)
fireallclientss()

civic sable
#

can you send the error that you get with that line

jagged creek