here is my code
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 | while true do |
13 | Fruit.Position = Vector 3. new(Mouse.hit.p.x, Mouse.hit.p.y, Mouse.hit.p.z) |
14 | if down = = false then |
15 | Fruit:Destroy() |
whenever I clicked on the fruit I would be able to drag a copy of it... the problem is that the clone of the fruit is expanding an then pops..... like a balloon and every time I move it, it reverts to its original size... only to expand and pop again
It's actually not expanding. Rather, it's moving closer and closer to your camera until it goes behind it (what you see as popping).
A simple fix is to set Mouse.TargetFilter = Fruittilium
after you check if Mouse.Target == Fruittilium
. Then, after the while
loop finishes, reset it to Mouse.TargetFilter = nil
.