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

Trying to put a Watch model on my character's arm?

Asked by 3 years ago

Hello! I'd a little bit of help with this...

--Script in ServerScriptService

game.Players.PlayerAdded:Connect(function(plr)
    if plr:GetRankInGroup(8026683) >= 3 then
        local character = plr.CharacterAdded:wait()
        local ArmPosition = Vector3.new(character.RightLowerArm.Position)
        local eWatch = game.ReplicatedStorage.eWatch
        eWatch:Clone()
        eWatch.Parent = character.RightLowerArm
        eWatch:MoveTo(ArmPosition)
    end
end)
0
just clone it into the character as an accessory with a attachment (pretty sure it will work like that) BulletproofVast 1033 — 3y
0
just clone it into the character as an accessory with an attachment (pretty sure it will work like that) BulletproofVast 1033 — 3y
0
@BulletproofVast It doesn't work. :/ Fixer1987 95 — 3y

Answer this question