Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Part follow mouse? [closed]

Asked by
k1nq 30
9 years ago

So, I was trying to make a tool that when you chose a certain thing, such as a part, it would show up and follow mouse, then once you click it would place it, how could I do this?

Closed as Not Constructive by Shawnyg, AwsomeSpongebob, and rexbit

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 9 years ago

Well, if you want a simple way to make a part follow the player's mouse you can do this:

01local player = game.Players.LocalPlayer
02local mouse = player:GetMouse()
03 
04local part --= whatever part you want to move
05 
06local render = game:GetService("RunService").RenderStepped
07 
08local moving
09local function movePart(currentPart)
10    moving = true
11    render:connect(function()
12        if moving then
13            currentPart.CFrame = CFrame.new(mouse.Hit.p)
14        end
15    end)
View all 22 lines...
Ad