|
| 26 Apr 2014 02:51 PM |
local Tool = script.Parent;
enabled = true function onButton1Down(mouse) if not enabled then return end
enabled = false mouse.Icon = "http://www.roblox.com/Ready-Cursor-item?id=140798618"
wait(.5) mouse.Icon = "http://www.roblox.com/Ready-Cursor-item?id=140798618" enabled = true
end
function onEquippedLocal(mouse)
if mouse == nil then print("Mouse not found") return end
mouse.Icon = "http://www.roblox.com/Ready-Cursor-item?id=140798618" mouse.Button1Down:connect(function() onButton1Down(mouse) end) end
Tool.Equipped:connect(onEquippedLocal)
--I found a decal I like, and it only shows up as a normal windows mouse, not even a roblox one!
|
|
|
| Report Abuse |
|