How to change character and keep animations running?
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:
03 | local UIS = game:GetService( "UserInputService" ) |
04 | local Player = game.Players.LocalPlayer |
05 | local Mouse = Player:GetMouse() |
06 | local Camera = game.Workspace.CurrentCamera |
08 | function Click(input,gp) |
09 | if input.UserInputType = = Enum.UserInputType.Keyboard then |
10 | if input.KeyCode = = Enum.KeyCode.Q 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() |
17 | local Char = Player.Character |
18 | local Clone = Char:Clone() |
19 | Clone.Parent = workspace |
20 | print (Mouse.Target.Parent.Name) |
21 | local Target = Mouse.Target |
22 | Camera.CameraSubject = Target.Parent |
23 | Player.Character = Target.Parent |
29 | UIS.InputBegan:connect(Click) |
I don't rlly care if you copy this but plzz be considerate and give me credit.