RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"script a tool that makes the player shrink when player left clicks the tool"
-- local script local tool = script.Parent local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local function shrink() humanoid.BodyHeightScale.Value = 0.5 humanoid.BodyWidthScale.Value = 0.5 humanoid.BodyDepthScale.Value = 0.5 end tool.Activated:Connect(shrink)