RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a code that spawns a part in front of the player"
-- local script local player = game.Players.LocalPlayer local part = Instance.new("Part") part.Parent = game.Workspace part.Size = Vector3.new(2,2,2) part.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,5)