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.
|