How do i Create parts Near my Torso like but Make them Slowing raise? I have a basic idea but i need help.
EXP:"Position = workspace.jerek123.Torso.Position"
Example full script: for i = 1, 100,0.1 do script.Parent.Position = game.Workspace.Playername.Torso.Position * CFrame.new(0,i,0) end
I would use CFrame not Position as this can kill your character when you use the loop. To create parts, use:
Instance.new("Parts",workspace.jerek123)