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

Making Said Model float above right arm

Asked by 10 years ago

I've been trying and trying but I can't get Space Cube to float above my right arm and follow it. Any suggestions/help?

1 answer

Log in to vote
0
Answered by 10 years ago

Personally, I think you could just use a weld to accomplish this.

cube = game.Workspace["Space Cube"]

function weldToTorso(part)
    local weld = Instance.new("Weld", part)
    weld.Part0 = game.Players.LocalPlayer.Character.Torso
    weld.Part1 = part
    weld.C0 = CFrame.new(0,0,0) --Mess around with this to find the correct place you want it
end

weldToTorso(cube)
Ad

Answer this question