of     1   

Tomohawkmissile2
#141750523Sunday, July 27, 2014 7:19 PM GMT

I have a script-type HopperBin that isnt working. It's controlled by a LocalScript, but it doesn't run on a multiplayer server. In build/Edit modes, it works fine. Anyone know what could be the issue? No error reports. No Output. just doesn't run. SCRIPT: wait() bin = script.Parent halt = false function onButton1Down(mouse) local hit = mouse.Target if (hit == nil) or (halt == true) then return end halt = true mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" if (hit.Name == "FactoryTrash") then hit:Destroy() bin.Parent.Parent.PlayerSave.SideJobs.Factory_Trash.Value = bin.Parent.Parent.PlayerSave.SideJobs.Factory_Trash.Value + 1 end if (hit.Name == "FactoryObject") then hit:Destroy() bin.Parent.Parent.PlayerSave.SideJobs.Factory_Products.Value = bin.Parent.Parent.PlayerSave.SideJobs.Factory_Products.Value + 1 end if (hit.Name == "Button") then if hit.Parent.Name == "FactoryMachine" then hit.Parent.Pressed.Value = not hit.Parent.Pressed.Value end end wait(.2) halt = false mouse.Icon = "rbxasset://textures\\GunCursor.png" 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) Like I said, it works fine in testing modes. When I test it online, nothing.
Tomohawkmissile2
#141778379Monday, July 28, 2014 12:07 AM GMT

Ello?
128GB
#141778462Monday, July 28, 2014 12:08 AM GMT

Is it a local script
Tomohawkmissile2
#141779624Monday, July 28, 2014 12:22 AM GMT

Says it clearly in the original post: 'Controlled by a localscript'
128GB
#141779823Monday, July 28, 2014 12:23 AM GMT

What happens if you try it in a studio server
Tomohawkmissile2
#141779938Monday, July 28, 2014 12:25 AM GMT

Now it's working for no reason. No changes made and it's working. Could someone please explain this madness?
BothAngles
#141779945Monday, July 28, 2014 12:25 AM GMT

wait() bin = script.Parent halt = false;string=wait function onButton1Down(mouse) local hit = mouse.Target;Spawn(string) if (hit == nil) or (halt == true) then return end halt = true mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" if (hit.Name == "FactoryTrash") then hit:Destroy() bin.Parent.Parent.PlayerSave.SideJobs.Factory_Trash.Value = bin.Parent.Parent.PlayerSave.SideJobs.Factory_Trash.Value + 1 end if (hit.Name == "FactoryObject") then hit:Destroy() bin.Parent.Parent.PIayerSave.SideJobs.Factory_Products.Value = bin.Parent.Parent.PlayerSave.SideJobs.Factory_Products.VaIue + 1 end if (hit.Name == "Button") then if hit.Parent.Name == "FactoryMachine" then hit.Parent.Pressed.VaIue = not hit.Parent.Pressed.Value end end wait(.2) halt = false mouse.lcon = "rbxasset://textures\\GunCursor.png" end function onSelected(mouse) --print("Action Tool Selected") mouse.Icon = "rbxasset://textures\\GunCursor.png" mouse.Button1Down:connect(function() onButtonlDown(mouse) end) end bin.Selected:connect(onSeIected)

    of     1