I am trying to clone the player’s character to my viewport frame… This script should be pretty simple, but ROBLOX wants to act stupid…
Here’s the portion of the script:
local plr = game.Players.LocalPlayer or game.Players.PlayerAdded:Wait()
local char = plr.Character or plr.CharacterAdded:Wait()
local clonedChar = char:Clone()
local vp = script.Parent
local newCam = Instance.new("Camera",vp)
vp.CurrentCamera = newCam
newCam.CameraType = "Scriptable"
clonedChar.Parent = vp