#Cloned dummy and animation
16 messages · Page 1 of 1 (latest)
In StarterPlayerScripts
Player.Character:Clone().Position = Vector3.new(0, 0.5, -23)```
for example... yes
Attempt to index nil with Clone
try
local Character = Player.Character or Player.CharacterAdded:Wait()
now "attempt to index nil with position"
hmmmm
its a localScript in StarterPlayerScript if that helps
no, you should be able to acces the character from there..
** You are now Level 4! **
oh ok
position is not a property of the character
instead try
Character:Clone():SetPrimaryPartCFrame(CFrame.new(0, 0.5, -23))
now its "attempt to index nil with SetPrimaryCFrame" 💀
** You are now Level 1! **
ooof