of     1   

adventurebroemil2
#146542917Sunday, September 21, 2014 11:26 PM GMT

local button = script.Parent button.ClickDetector.MouseClick:connect(function() game.Workspace.Tix:Clone().Position = -122.4, 10.5, 19.2 end) I want the Tix's Clone to go to the position of a brick that cannot collide.
BruceAB12
#146543115Sunday, September 21, 2014 11:28 PM GMT

game.Workspace.Tix:Clone().Position = Vector3.new(-122.4, 10.5, 19.2) Position is a vector. Keep it simple.
adventurebroemil2
#146544584Sunday, September 21, 2014 11:46 PM GMT

still wont work.
adventurebroemil2
#146545918Monday, September 22, 2014 12:05 AM GMT

ned halsd
BruceAB12
#146547839Monday, September 22, 2014 12:31 AM GMT

local button = script.Parent button.ClickDetector.MouseClick:connect(function() a = game.Workspace.Tix:Clone() a.Parent = Game.Workspace a.Position = Vector3.new(-122.4, 10.5, 19.2) end) Keep it simple.

    of     1