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

How to change character and keep animations running?

Asked by 8 years ago

Ok so I have a idea to make a game where you sorta go around an possess different characters. Ive made a map with a ton of noob npcs that you can possess and control Heres the script. BTW it is a local script but I have filtering enabled off. So you press q to switch but when you switch it works but when you move around it doesnt run the animations such as walking and jumping. If you want to try the place this is the link:https://web.roblox.com/games/672192244/Switch And here's the script:

01-- Switch script by Wafflecow321
02-- in dev
03local UIS = game:GetService("UserInputService")
04local Player = game.Players.LocalPlayer
05local Mouse = Player:GetMouse()
06local Camera = game.Workspace.CurrentCamera
07 
08function Click(input,gp)
09if input.UserInputType == Enum.UserInputType.Keyboard then
10    if input.KeyCode == Enum.KeyCode.Q then
11    if Mouse.Target then
12        if Mouse.Target.Parent:FindFirstChild("Humanoid")and not Mouse.Target:IsDescendantOf(Player.Character)then
13        Player.Character.Archivable = true
14        if Player.Character:FindFirstChildOfClass("Tool")then
15            Player.Character:FindFirstChildOfClass("Tool"):Destroy()
View all 29 lines...

I don't rlly care if you copy this but plzz be considerate and give me credit.

1 answer

Log in to vote
0
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
8 years ago
Edited 8 years ago

I'm pretty sure if you disable the Animate script inside the character, then re-enable it, the animations should recalibrate.

01local Char = Player.Character
02local Clone = Char:Clone()
03Clone.Parent = workspace
04local Target = Mouse.Target
05Camera.CameraSubject = Target.Parent
06Player.Character = Target.Parent
07 
08wait(1)
09 
10local anim = Player.Character:WaitForChild("Animate");
11anim.Disabled = true;
12anim.Disabled = false;

Test around with this idea.

0
Thanks that fixed everyting Wafflecow321 457 — 8y
Ad

Answer this question