I have no idea where to look for answers on this but, how do i use the scroll wheel, like in some fps games to change weapons? is it a button function? Any clues?
http://wiki.roblox.com/index.php?title=Mouse
local Player = game.Players.LocalPlayer local Mouse = Player:GetMouse() Mouse.WheelForward:connect(function() WeaponsForward() -- just an example function end) Mouse.WheelBackward:connect(function() WeaponsBack() -- just an example function end)