Hello people of the roblox community
I am trying to make my StarterCharacter Longer when touched a part
is there anyway i could do this?
also i would like to know how i could do it so it doesnt do it just one time it gets bigger everytime you touch a part
Put this Script into a Part that you want the player to touch to scale.
local Part = script.Parent
local ScaleNumber = 1.5 -- change this to effect how much the character is scaled
local function ScaleCharacter(Humanoid,Number)
if Humanoid and Number then
local BodyDepthS = Humanoid.BodyDepthScale
local BodyWidthS = Humanoid.BodyWidthScale
BodyDepthS.Value = BodyDepthS.Value * Number
BodyWidthS.Value = BodyWidthS.Value * Number
end
end
Part.Touched:Connect(function(Hit)
if Hit and Hit.Parent:FindFirstChild("Humanoid") then
local Humanoid = Hit.Parent:FindFirstChild("Humanoid")
ScaleCharacter(Humanoid,ScaleNumber)
end
end)
local part = workspace.Part --part to touch
part.Touched:Connect(function(hit) --hit is the other part
if hit.Parent:FindFirstChild("HumanoidRootPart") then --check if other part belongs to player
local character = hit.Parent
local humanoid = character:WaitForChild("Humanoid")
--following properties are all default values change them to fit your needs
humanoid.BodyTypeScale = 0.3
humanoid.DepthScale = 1
humanoid.HeadScale = 1
humanoid.HeightScale = 1
humanoid.ProportionScale = 1
humanoid.WidthScale = 1
end
end)
Try the above, it’s a server script, place it inside the part which when touched causes the character’s size to change. Make sure to change the values to see any effect because I’ve just used the default values for those properties in the script.
Definitely, you just wanted to change height right?
local part = workspace.Part --part to touch
part.Touched:Connect(function(hit) --hit is the other part
if hit.Parent:FindFirstChild("HumanoidRootPart") then --check if other part belongs to player
local character = hit.Parent
local humanoid = character:WaitForChild("Humanoid")
--following properties are all default values change them to fit your needs
humanoid.HeightScale = 2
end
end)
local part = workspace.Part --part to touch
part.Touched:Connect(function(hit) --hit is the other part
if hit.Parent:FindFirstChild("HumanoidRootPart") then --check if other part belongs to player
local character = hit.Parent
local humanoid = character:WaitForChild("Humanoid")
local Head = humanoid:WaitForChild("Head")
local UpperTorso = humanoid:WaitForChild("UpperTorso")
local LowerTorso = humanoid:WaitForChild("LowerTorso")
local LeftUpperArm = humanoid:WaitForChild("LeftUpperArm")
local LeftLowerArm = humanoid:WaitForChild("LeftLowerArm")
local LeftHand = humanoid:WaitForChild("LeftHand")
local RightUpperArm = humanoid:WaitForChild("RightUpperArm")
local RightLowerArm = humanoid:WaitForChild("RightLowerArm")
local RightHand = humanoid:WaitForChild("RightHand")
local LeftUpperLeg = humanoid:WaitForChild("LeftUpperLeg")
local LeftLowerLeg = humanoid:WaitForChild("LeftLowerLeg")
local LeftFoot = humanoid:WaitForChild("LeftFoot")
local RightUpperLeg = humanoid:WaitForChild("RightUpperLeg")
local RightLowerLeg = humanoid:WaitForChild("RightLowerLeg")
local RightFoot = humanoid:WaitForChild("RightFoot")
--following properties are all default values change them to fit your needs
humanoid.HeightScale = 2
end
end)
This will only work for R15 character’s, I can make it more compatible later if necessary but let me know if this works.
2: Paste this code (Credits to @Limited_Unique for some of this code):
script.Parent.Touched:Connect(function(Touched)
if Touched.Parent:FindFirstChild("Humanoid") then
local HumanoidRootPart = Touched.Parent:WaitForChild("HumanoidRootPart") --if the root loaded, then all the character is loaded
local humanoid = Touched.Parent:FindFirstChild("Humanoid")
--following properties are all default values change them to fit your needs
humanoid.BodyTypeScale = 0.5
humanoid.DepthScale = 1.5
humanoid.HeadScale = 1.5
humanoid.HeightScale = 1.5
humanoid.ProportionScale = 1.5
humanoid.WidthScale = 1.5
end
end)
3: This should be done!, if so, make sure to mark this reply as the solution.
Won’t work because of the ongoing infinite yield issue (scale being attempted on parts before they’re loaded), I’ve fixed that in my previous post, also you haven’t defined “humanoid”.