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

How can I make gear that puts your arms in a position? [closed]

Asked by
ym5a 52
2 years ago

Example: https://prnt.sc/1jy3t0w

I want to know how to do something like this, please give me methods and examples

0
This isn't a request site. The site's for assistance/help with a script not requesting it for you. If you'd like to request something, please ask a question on the developer forums. See help to learn how to post good questions/answers: https://scriptinghelpers.org/help/how-post-good-questions-answers JesseSong 3916 — 2y

Closed as Not Constructive by JesseSong

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 2 years ago

A idea you can do is to make a freeze animation of what u want and then when u hold the tool connect it to the animation, also remember to loop the animation

for example: Also u should probably do.. script local script eventing ill example Server script: in the tool

script.Parent.Equipped:connect(function()
local player = script.Parent.Parent.Parent
game.ReplicatedStorage.Animation:FireClient(plr)
end)

local script

game.ReplicatedStorage.Animation.OnClientEvent:Connect(function()
local plr = game.Players.LocalPlayer
local Animation = game.ServerStorage.Animation -- assuming to put it here
Animation.Looped = true -- probably should do this
local TrackAnimation = plr.Character.Humanoid:LoadAnimation(Animation)
TrackAnimation:Play() -- Now for the turn off animation script, im not really sure but im sure you can figure it out
end)
Ad