ScriptOn
|
  |
| Joined: 22 Aug 2010 |
| Total Posts: 10885 |
|
|
| 23 Dec 2013 05:26 PM |
At least the icon, that is? I know it can be done with tools, but that requires the player to select the tool.
is there any other way? |
|
|
| Report Abuse |
|
|
|
| 23 Dec 2013 05:29 PM |
http://wiki.roblox.com/index.php/Equipped_(Event)
"Getting The Mouse Secretly"
That's what you're looking for? |
|
|
| Report Abuse |
|
|
ScriptOn
|
  |
| Joined: 22 Aug 2010 |
| Total Posts: 10885 |
|
| |
|
|
| 23 Dec 2013 05:33 PM |
Lol, "automagically"?
"U BROKE THE TV U IDIOT!" - CeaselessSoul |
|
|
| Report Abuse |
|
|
ScriptOn
|
  |
| Joined: 22 Aug 2010 |
| Total Posts: 10885 |
|
| |
|
|
| 23 Dec 2013 05:36 PM |
Seems legit.
"U BROKE THE TV U IDIOT!" - CeaselessSoul |
|
|
| Report Abuse |
|
|
ScriptOn
|
  |
| Joined: 22 Aug 2010 |
| Total Posts: 10885 |
|
| |
|
|
| 23 Dec 2013 08:32 PM |
lolnope
but you CAN force them to get the mouse
http://wiki.roblox.com/index.php/Equipped
look at the part where it says secretly
(LocalScript)
repeat wait() until game.Players.LocalPlayer player = game.Players.LocalPlayer tool = Instance.new("Tool",player) Instance.new("Part",Tool).Name = "Handle" tool.Equipped:connect(function(mouse) tool.Parent = nil -- Wooooo end) player.Character:WaitForChild("Humanoid"):EquipTool(tool)
Just parent the LocalScript to the Player by Script, StarterPack, StarterGui, or something.
|
|
|
| Report Abuse |
|
|
|
| 23 Dec 2013 08:40 PM |
repeat wait() until game.Players.LocalPlayer player = game.Players.LocalPlayer tool = Instance.new("Tool",player.Backpack) part = Instance.new("Part",tool) part.Name = "Handle" tool.Equipped:connect(function(mouse) repeat wait() until tool.Parent == player.Character tool:Destroy() print("Woooooo") end) tool.Parent = player.Character
wooooo |
|
|
| Report Abuse |
|
|
ScriptOn
|
  |
| Joined: 22 Aug 2010 |
| Total Posts: 10885 |
|
|
| 23 Dec 2013 08:41 PM |
@above, how come this never prints :D
repeat wait() until game.Players.LocalPlayer player = game.Players.LocalPlayer tool = Instance.new("Tool",player) Instance.new("Part",Tool).Name = "Handle" tool.Equipped:connect(function(mouse) tool.Parent = nil print(":D!") end) player.Character:WaitForChild("Humanoid"):EquipTool(tool)
Its a localscript inside of playergui and backpack |
|
|
| Report Abuse |
|
|
|
| 23 Dec 2013 08:50 PM |
You mean :D! - ?
"U BROKE THE TV U IDIOT!" - CeaselessSoul |
|
|
| Report Abuse |
|
|
|
| 23 Dec 2013 08:51 PM |
idk, that's why I posted the new one.
Unfortunately you can't set the Mouse's Icon to "" or it'll print that the Mouse is not there or something. |
|
|
| Report Abuse |
|
|
|
| 23 Dec 2013 08:53 PM |
What I did was make a totally transparent image and set it to that, XD.
"U BROKE THE TV U IDIOT!" - CeaselessSoul |
|
|
| Report Abuse |
|
|
|
| 23 Dec 2013 08:58 PM |
| what id like to know is how you pulled off an ADS with guns |
|
|
| Report Abuse |
|
|
ScriptOn
|
  |
| Joined: 22 Aug 2010 |
| Total Posts: 10885 |
|
| |
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 23 Dec 2013 09:43 PM |
| http://wiki.roblox.com/index.php/EquipTool_(Method) |
|
|
| Report Abuse |
|
|
|
| 23 Dec 2013 09:45 PM |
@Script
my 12 yr old brain mathyness cant comprehend this
elaborateeeeeee |
|
|
| Report Abuse |
|
|
| |
|