Camera manipulation not working

Hi, I was working on my coffin dance meme game when I found out my script didn’t work. The tutorial I watched was about 3 years old. Here’s the script:

The problem is that the line that states “Player:Character or Player.CharacterAdded:Wait()”

I re watched the same video again just to find the bug, but I couldnt find it. Here is the video: Camera Manipulation [PART 1] - ROBLOX Scripting Tutorial - YouTube

If you can find a solution to the problem, please reply. :happy2:

It’s supposed to be Player.Character (not Player:Character), you spelled it wrong. Doing : is calling a function, whereas . is calling a member (a property or object within it). So, since Character is part of Player, it’s dot notation.

Player:Character should be Player.Character as Character is the model of the player, not a function.

I should of caught that easy mistake :man_facepalming: Thanks for your help. I am very tired so that’s probably why I didn’t catch the mistak.

3 Likes