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

why isnt this working???

Asked by 9 years ago

hi, i was working on a teleport tool, but it dosent work fully :l ... what did i do wrong?

01local deb = false
02 
03script.Parent.Deselected:connect(function()
04    if deb == true then
05local me = game.Players.LocalPlayer
06local char = game.Players.LocalPlayer.Character
07        if char then
08            char:BreakJoints()
09        end
10        end
11end)
12 
13 
14script.Parent.Selected:connect(function(m)
15    m.Button1Down:connect(function(mouse)
View all 58 lines...
0
why are you teleporting all the parts indivitually you could simple use MoveTo(), but if it works for you :/ pluginfactory 463 — 9y
0
cause it is a tool ... i know how to do the moveto() i did it for an npc ... :l FinickOdre123 6 — 9y
1
But MoveTo works for all models, if im not mistaken pluginfactory 463 — 9y

Answer this question