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

Object expands on dragging -why?

Asked by 8 years ago

here is my code

01local Fruittilium = game.Workspace.Fruittilium
02local Player = game.Players.LocalPlayer
03local Mouse = Player:GetMouse()
04local down = false
05Mouse.Button1Down: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 = Vector3.new(Mouse.hit.p.x, Mouse.hit.p.y, Mouse.hit.p.z)
14    if down == false then
15    Fruit:Destroy()
View all 25 lines...

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

1 answer

Log in to vote
0
Answered by 8 years ago

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.

Ad

Answer this question