How do I make this part move?
local UIS = game:GetService('UserInputService') subinput = UIS.InputBegan:connect(function(input,gameProcessedEvent) if gameProcessedEvent then return end if input.KeyCode == Enum.KeyCode.Space then local part = Instance.new("Part") part.Position = game.Workspace.world_kiIIer.RightFoot.Position part.Transparency = 1 part.Size = Vector3.new(4, 1, 4) part.CanCollide = true wait(2) part:Destroy() end end)
To move a part you want to CFrame it. CFrame's can be used to change the position and orientation of a part.
For more information about CFrames click this Roblox Wiki link:
https://developer.roblox.com/api-reference/property/BasePart/CFrame