So as i said in the title i need to place a new Instance inside of player's torso.This is how i've tried to do it but i can't locate the player inside the workspace
local ff = Instance.new("ForceField") ff.Parent = game.Workspace. ff.Visible = false
Firstly, the following code should be a local script inside of StarterCharacterScripts
local player = game.Players.LocalPlayer local character = player.Character local ff = Instance.new("ForceField") ff.Parent = character.Torso -- change Torso to UpperTorso or LowerTorso if you're using r15 ff.Visible = false
Each time the character spawns/respawns this code will run as the script reloads with the character.