Japzel
|
  |
| Joined: 25 Jun 2012 |
| Total Posts: 46 |
|
|
| 31 May 2014 03:48 PM |
I've been trying and i can't make a tool that; Well basically like the grab tool, selects a part and moves it around - except i only want it to move parts with the name 'Gold'. However i had previous help, but it also messed the camera up and dragged the baseplate with it.
I am willing to pay for this tool to be made, functioning as stated (only moving parts named 'Gold'). |
|
|
| Report Abuse |
|
|
| |
|
Japzel
|
  |
| Joined: 25 Jun 2012 |
| Total Posts: 46 |
|
|
| 31 May 2014 04:00 PM |
| Alright message me when it's ready to be looked over. |
|
|
| Report Abuse |
|
|
|
| 31 May 2014 04:07 PM |
plr = game.Players.LocalPlayer m = plr:GetMouse() target = nil
script.Parent.Selected:connect(function() m.Button1Down:connect(function() target = m.Target if (target) then if target.Name == "Gold" then m.Move:connect(function() if target.Name == "Gold" then target.CFrame = CFrame.new(m.hit.X,m.hit.Y+(target.Size.Y/2),m.hit.Z) end end) end end end) m.Button1Up:connect(function() if (target) and target.Name == "Gold" then target = nil end end) end) |
|
|
| Report Abuse |
|
|
| |
|
|
| 31 May 2014 04:32 PM |
I have one w/ Sparkles and one w/o Sparkles. (The sparkles are gold) I could have something else inserted into there of your choice if you want. |
|
|
| Report Abuse |
|
|