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

How to make a Draggable Object?

Asked by 8 years ago

Ok, this time I actually tried

01local Fruittilium = game.Workspace.Fruittilium
02local Player = game.Players.LocalPlayer
03local Mouse = Player:GetMouse()
04Mouse.Button1Down:connect(function()
05    if Mouse.Target == Fruittilium then
06    print("you clicked it")
07    local Fruit = Fruittilium:Clone()
08    Fruit.Parent = game.Workspace
09    Fruit.Position = Mouse.Hit
10end
11end)

It returned Players.Player1.PlayerScripts.LocalScript:9: bad argument #3 to 'Position' (Vector3 expected, got CFrame) What did I do wrong? can someone help me?

1 answer

Log in to vote
0
Answered by 8 years ago

Hi! So after inspecting your code in a quick proof read, and looking at the Output, I have found your error. Your error is actually quite silly, but common mistake. A simple change in words would fix it!

01local Fruittilium = game.Workspace.Fruittilium
02local Player = game.Players.LocalPlayer
03local Mouse = Player:GetMouse()
04Mouse.Button1Down:connect(function()
05    if Mouse.Target == Fruittilium then
06    print("you clicked it")
07    local Fruit = Fruittilium:Clone()
08    Fruit.Parent = game.Workspace
09    Fruit.CFrame = Mouse.Hit
10end
11end)

Basically what your mistake was, was that you tried to position the "Fruit" to the Mouse.Hit, which is a CFrame value. The Position property is a Vector3 value.

Just be careful next time, as this does tend to happen.

Ad

Answer this question