RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that a block spawns in your avatar"
-- local script local part = script.Parent local function onTouched(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then local block = Instance.new("Part") block.Parent = player.Character block.Position = player.Character.HumanoidRootPart.Position end end part.Touched:Connect(onTouched)