hi everyone this is my first post on here i am trying to achieve making my character bigger and i tried increasing size but it didnt go very well
this is the code i used
local scaleFactor = 2 -- multiplier
local function onCharacterAdded(character)
for _, part in ipairs(character:GetDescendants()) do
if part:IsA("BasePart") then
part.Size = part.Size * scaleFactor
end
end
end
local player = game.Players.LocalPlayer
player.CharacterAdded:Connect(onCharacterAdded)
if player.Character then
onCharacterAdded(player.Character)
end
i searched on the forum about how to make it but i am not gonna lie i didnt understand much about them if anyone know solution can help me please thanks