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

How to move a characters lower torso?

Asked by 4 years ago

I'm working on a way to see the characters legs I did the leg models and script but when i move the lower torso up it comes back to the old position again is there a way to make it stay there By the way i'm using a character from toolbox and there are attachments in the lower torso but i did everyting to weld it there help me.

1 answer

Log in to vote
0
Answered by
Tokyo7979 131
4 years ago
Edited 4 years ago

Try using a Weld, such as:

local player = game.Players.LocalPlayer
local char = player.Character or player.CharacterAdded:Wait()
local part = Instance.new("Part")
part.CanCollide = false

local weld = Instance.new("Weld")
weld.Part0 = part
weld.Part1 = player.Character["Left Leg"] --- change leg to what u want

NOTE: Make sure you use a Script and make sure it is not a LocalScript.

0
Do i need to put this inside the character TheMostDelikanliMan -14 — 4y
0
It doesn't work TheMostDelikanliMan -14 — 4y
0
Hmm, interesting. Try using positioning through a loop instead. Tokyo7979 131 — 4y
Ad

Answer this question