of     1   

acb227
#36483106Thursday, November 04, 2010 12:17 PM GMT

Im not that good at tables, so can you help me with this? permission = {"acb227", "xSoulStealerx"} a.Touched:connect(function(hit) human = hit.Parent:findFirstChild("Humanoid") if human then if hit.Parent.Name ~= permission then hit.Parent.Torso.CFrame = CFrame.new(0, 5, 0) end end end)
WK100
#36483396Thursday, November 04, 2010 12:38 PM GMT

permission = {"acb227", "xSoulStealerx", "WK100"} a.Touched:connect(function(hit) human = hit.Parent:findFirstChild("Humanoid") if human then for i, v in pairs(permission) do if hit.Parent.Name == v then hit.Parent.Torso.CFrame = CFrame.new(0, 5, 0) end end end end)

    of     1