Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Moving a clone of yourself HELP!

Asked by 10 years ago
while true do

local player = game.Players.LocalPlayer
local character = player.Character
local torso = character:FindFirstChild("Torso") --v on the end == value
local torsov = Vector3.new(torso.Position)      --d on the beginning == distance
print(torsov)

if torso then
    print("found torso")
else
    print("no torso")
end


local rarm = character:FindFirstChild("Right Arm")
local rarmv = Vector3.new(rarm.Position)
print(rarmv)

if rarm then
    print("found right arm")
else
    print("no right arm")
end

local drarm = Vector3.new(torsov - rarmv)
print(drarm)



wait(5)
end

I'm trying to make a script that finds the how right arm is positioned to the torso, so when I teleport it, the arm stays in the right place.

What I want is a clone of yourself that moves based on the camera. Right now I'm working on making the character move as a whole.

Any help? Any better ways to do this? Any help is appreciated (Btw the problem isn't that I can't clone a character, Its that I don't know how to move whole model of LocalPlayer.Character)

0
bump tkddude2 75 — 10y

1 answer

Log in to vote
1
Answered by 10 years ago

Take a look at this question.

0
My bad I asked the question wrong. I CAN clone the character, i just don't know how to move it as a whole. tkddude2 75 — 10y
0
I'm still going to look into the link though tkddude2 75 — 10y
0
Try the MoveTo method on the model (http://wiki.roblox.com/index.php/MoveTo) Thewsomeguy 448 — 10y
Ad

Answer this question