sooo, uh I am thinking of a game that will take me a few seconds to make. so every time they take a step they will get fatter. i got my first idea from thedevking when he made the script on how to get bigger when you take a step and then I combined it with the wide Putin meme.
i am not even sure if roblox will accept it but who knows.
uhm…so what’s the point of this post lol?
Moderation will probably do the funny item moderated move
You could probably do this on a server script inside ServerScriptService
, while defining all of the Humanoid’s Body
values via R15 with these NumberValues
:
Depending on what you want to adjust, I’d assume you want to only change the BodyWidthScale
property so you can detect when a Character moves using the Running
or StateChanged
event hopefully:
game.Players.PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Character)
local Humanoid = Character:WaitForChild("Humanoid")
local Width = Humanoid:WaitForChild("BodyWidthScale")
Humanoid.StateChanged:Connect(function(OldState, NewState)
if NewState == Enum.HumanoidStateType.Running then
while Humanoid.WalkSpeed > 0 do
Width.Value *= 1.1
wait(1)
end
end
end)
end)
end)
Probably something relevant along these lines I suppose could do
i will probably be using a custom character.
You’ll probably need to reference the Custom Character’s Torso instead if it won’t have a Humanoid
object inside
let see what happens. so i put the script inside of the character and changed how you say the humanid. so now it is script.parent.Humanoid
I mean if there’s a Humanoid
object already in the Character
, it should work fine? Unless if the bodyparts are different
it is a startercharacter noob.
so, I got an r15 dummy then i put it in startercharacter. then do i put the script in it?
Not necessarily, you can put the script in ServerScriptService
and it should still work
local script or normal script?
I said Server Script, which in simple terms should be a Normal script
ok i am so confused.
i put an r15 character in startercharacter, then i put the normal script in serverscriptstorage?
Inhale
Put your custom character where you want it to be
But put the “Normal Script” inside ServerScriptService
and that is what i did. still though what.