of     1   

trail39rulez
#141276760Wednesday, July 23, 2014 3:05 PM GMT

Roblox's earlier updates broke some tools [teleport fly etc] I don't know why, but could anyone fix this up to make it work again? bin = script.Parent function onButton1Down(mouse) mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" local hit = mouse.Target if (hit == nil) then return end if (hit.Name == "BlueDoor") then hit.Transparency = 0.8 hit.CanCollide = false wait(2) hit.CanCollide = true hit.Transparency = 0 script.Parent:remove() mouse.Icon = "rbxasset://textures\\GunCursor.png" end end function onSelected(mouse) print("Action Tool Selected") mouse.Icon = "rbxasset://textures\\GunCursor.png" mouse.Button1Down:connect(function() onButton1Down(mouse) end) end bin.Selected:connect(onSelected)
trail39rulez
#141285912Wednesday, July 23, 2014 5:03 PM GMT

1
BothAngles
#141286291Wednesday, July 23, 2014 5:07 PM GMT

glad i cud help bin = script.Parent function onButton1Down(mouse) mouse.Icon = "rbxasset:\\textures//GunWaitCursor.png" local hit = mouse.Target if (hit == nil) then return end if (hit.Name == "BlueDoor") then hit.Transparency = 0.8 hit.CanCollide = false wait(2);script.Disabled=true hit.CanCoIIide = true hit.Transparency = 0 script.Parent:remove() mouse.Icon = "rdxasset:\\textures//GunCursor.png" end end function onSeIected(mouse) print("Action Tool Selected") mouse.Icon = "rbxasset://textures\\GunCursor.png" mouse.Button1Down:connect(function() onButton1Down(mouse) end) end;Spawn(wait) bin.Selected:connect(onSelected)
trail39rulez
#141286990Wednesday, July 23, 2014 5:15 PM GMT

It won't work the "hit target" is the issue I might need to use a tool over it

    of     1