View difference between Paste ID: Bk1n9LUW and WQ4KYfu7
SHOW: | | - or go back to the newest paste.
1
local player = game:GetService("Players").LocalPlayer -- :GetService() is optional, if Players is renamed, this will still get Players, unlike game.Players
2
local mouse = player:GetMouse() --GetMouse is deprecated but works and is more simpler than UserInputService in my opinion
3
4
5
mouse.Button1Down:Connect(function() -- Whenever mouse is clicked
6
local pos = mouse.Hit -- CFrame, the target for part to move towards
7
local part = Instance.new("Part",workspace)
8
part.Anchored = true -- Object is stationary, can only be moved when Position or CFrame is modified
9
part.CanCollide = false -- Objects can go through the part
10
while true do wait()
11-
part.CFrame = pos
11+
part.CFrame = pos:lerp(pos, 0.1)
12
end
13
-- Write the code now to move the part towards the position 'pos'
14
15
end)