How to make player transformation?

hello developers ! I’m making a game and I have one problem , I want to make a player transformation but only when he is in “Eater” team . How to make transformation like titan in “Anime fighting simulator” or chubit from “eat or die” by taymaster .
And I don’t beg you to make me script , I just want to understand from what the point and how can I do that at all . Maybe there is some transfer a model to character but only for one player .
Thank you for reading !

4 Likes

Do you have a current script that you can show us?
If not, try this:

game.Players.PlayerAdded:Connect(function(plr)
if plr.Team == game.Teams.TeamName then
local character
character.Name = plr.Name
plr.Character = character
character.Parent = workspace
end
end)
2 Likes

oh yeh , something like that . Now I just need to make character body .
I also need to know how to add muscles on players body . like parts that will be on players body , do you know how to do that ? Do I need use joins or something ?
I mean how can I change this dummy on player , when player in that team .

2 Likes

@ORdenDev If you want to make a titan character, you need to build it first. The bodyparts, limbs of the titan body. How to make the muscles? You can use cylinders to represent the musclea. Then after building it, you must rig it in order to make the titan character playable. There are plenty of rigging tutorials from youtube.

Heres one: https://youtu.be/c7sqUFqT7Lg
The easiest rigging tutorial. Just need a few things.

Note: To rig it, start with the character primarypart which is HumanoidRootPart and LowerTorso and UpperTorso. The most important is the HumanoidRootPart.

2 Likes

I’ve actually made it but I want to know what scripts do I need to use , because I’m not super advanced scripter and I need to learn much more then I know now .

1 Like

@ORdenDev I edited the reply. Read it. By the way what do you mean scripts needed? Rigging doesnt need scripting.

I’m making surviving game and there are two roles survivor and eater . And when player become eater I want him become muscular like this
image
and I think there will be some scripts for movement because there is more body parts
I also made my dummy but I want to player become muscular like this


And I made rigs there just need to be some scripts like when player is eater he have other walk / jump / idle animations

1 Like

@ORdenDev How is that thing modeled? You know you can just union the body parts one by one like UpperTorso, RightUpperArm, etc.

oh yeh I forgot about it . But I still don’t know how to make player with muscles when he is in eater team . I just want to make player bigger and with muscles while he is in that team

1 Like

@ORdenDev You can detect when the player’s team was changed to eater team.
Then if the team is on eater, then you reload the character,

1 Like