of     1   

bloob827
#36223834Saturday, October 30, 2010 2:28 PM GMT

bin = script.Parent Debounce = false function onButton1Down(mouse) script.Parent.mouse.Icon = "http://www.roblox.com/asset/?id=36152562" local player = game.Players.LocalPlayer if player == nil then return end if (Debounce == false) then Debounce = true local h = player.Character:findFirstChild("Humanoid") mouse.Icon = "rbxasset://textures\\ArrowCursor.png" h.Health = h.Health + 100 end bin:Remove() end function onSelected(mouse) mouse.Icon = "rbxasset://textures\\ArrowCursor.png" mouse.Button1Down:connect(function() onButton1Down(mouse) end) end bin.Selected:connect(onSelected)
bloob827
#36224128Saturday, October 30, 2010 2:34 PM GMT

I think it has to do with the mouse icon.
bloob827
#36224465Saturday, October 30, 2010 2:41 PM GMT

bump
CrniOrao
#36224555Saturday, October 30, 2010 2:43 PM GMT

It would work as i can see, only im not sure about that mouse icon, it may need to be in "Local Script" :/ not sure.
bloob827
#36224733Saturday, October 30, 2010 2:46 PM GMT

:/ It worked fine before I put in the script.Parent.mouse.Icon = too lazy to copy and paste it =p
CrniOrao
#36224872Saturday, October 30, 2010 2:49 PM GMT

I don't know much about that, i always use "Swords" local script and change the mouse.Icon ID to whatever i want.
bloob827
#36225389Saturday, October 30, 2010 2:59 PM GMT

So you mean I should cut the local script in the sword, and then put MY script in it?
CrniOrao
#36225521Saturday, October 30, 2010 3:02 PM GMT

If it is Hopperbin, just get your script in Local Script, if it is Tool, then you will need to mix it all around that i don't know how :P
bloob827
#36225560Saturday, October 30, 2010 3:03 PM GMT

Testing.
bloob827
#36225817Saturday, October 30, 2010 3:08 PM GMT

Nope. :/ The icon didn't change. But the script worked.
CrniOrao
#36226277Saturday, October 30, 2010 3:16 PM GMT

Not pretty sure they will work, but... 1.st one below bin = script.Parent Debounce = false function onButton1Down(mouse) script.Parent.mouseIcon = "http://www.roblox.com/asset/?id=36152562" local player = game.Players.LocalPlayer if player == nil then return end if (Debounce == false) then Debounce = true local h = player.Character:findFirstChild("Humanoid") mouse.Icon = "rbxasset://textures\\ArrowCursor.png" h.Health = h.Health + 100 end bin:Remove() end function onSelected(mouse) mouse.Icon = "rbxasset://textures\\ArrowCursor.png" mouse.Button1Down:connect(function() onButton1Down(mouse) end) end bin.Selected:connect(onSelected) ---------------------------------------------------------------------------------- 2.nd one below bin = script.Parent Debounce = false function onButton1Down(mouse) script.Parent.mouseIcon ~= "http://www.roblox.com/asset/?id=36152562" local player = game.Players.LocalPlayer if player == nil then return end if (Debounce == false) then Debounce = true local h = player.Character:findFirstChild("Humanoid") mouse.Icon = "rbxasset://textures\\ArrowCursor.png" h.Health = h.Health + 100 end bin:Remove() end function onSelected(mouse) mouse.Icon = "rbxasset://textures\\ArrowCursor.png" mouse.Button1Down:connect(function() onButton1Down(mouse) end) end bin.Selected:connect(onSelected)
bloob827
#36226424Saturday, October 30, 2010 3:19 PM GMT

2) ~= ? :/
CrniOrao
#36226546Saturday, October 30, 2010 3:21 PM GMT

I looked at xLEGOx 's system, how he made it :3 and it was ~= Lolz, you can take a look also at that >_> People > xLEGOx > 2nd Page Of Places > The RPG Thingy > Edit / Play Solo Look into his plenty scripts and try to find the Icon part D:
bloob827
#36226728Saturday, October 30, 2010 3:25 PM GMT

:O! btw first 1 doesn't work D:
bloob827
#36226881Saturday, October 30, 2010 3:27 PM GMT

>>> Both of them failed.
bloob827
#36227438Saturday, October 30, 2010 3:37 PM GMT

bump.
CrniOrao
#36227454Saturday, October 30, 2010 3:37 PM GMT

Then i have NO IDEA, wait for someone whit skills about this xP
bloob827
#36227898Saturday, October 30, 2010 3:44 PM GMT

I know it has to do with the icon.. right nao im testing something.. i'm going to other peoples games and seeing if there "tools" have a different mouse icon. It says rbxasset:// or something like that :/
bloob827
#36228391Saturday, October 30, 2010 3:53 PM GMT

NVM I FIXED IT.

    of     1