01 | local Fruittilium = game.Workspace.Fruittilium |
02 | local Player = game.Players.LocalPlayer |
03 | local Mouse = Player:GetMouse() |
04 | local down = false |
05 | Mouse.Button 1 Down:connect( function () |
06 | down = true |
07 | if Mouse.Target = = Fruittilium then |
08 | local Fruit = Fruittilium:Clone() |
09 | Fruit.Parent = game.Workspace |
10 | Fruit.Name = "ACOFruit" |
11 | Fruit.Anchored = true |
12 | Mouse.TargetFilter = Fruit |
13 | while true do |
14 | Fruit.Position = Vector 3. new(Mouse.hit.p.x, Mouse.hit.p.y, Mouse.hit.p.z) |
15 | if down = = false then |
this script allows me to move objects freely.... too freely is there a way to add a grid to the object moves like one stud at a time?
The easiest way to do this is math.floor() or math.ciel()
01 | local Fruittilium = game.Workspace.Fruittilium |
02 | local Player = game.Players.LocalPlayer |
03 | local Mouse = Player:GetMouse() |
04 | local down = false |
05 | Mouse.Button 1 Down:connect( function () |
06 | down = true |
07 | if Mouse.Target = = Fruittilium then |
08 | local Fruit = Fruittilium:Clone() |
09 | Fruit.Parent = game.Workspace |
10 | Fruit.Name = "ACOFruit" |
11 | Fruit.Anchored = true |
12 | Mouse.TargetFilter = Fruit |
13 | while true do |
14 | Fruit.Position = Vector 3. new(math.floor(Mouse.hit.p.x), math.floor(Mouse.hit.p.y), math.floor(Mouse.hit.p.z)) -- Adding the math.floor() will round it down to the nearest whole number therefore placing it on a stud. Unless you want it to be in the exact center in which case you would need to add or subtract 0.5 from each number. |
15 | if down = = false then |
Hope this helps! If you have any questions feel free to ask.