dman739
|
  |
| Joined: 11 Dec 2009 |
| Total Posts: 4263 |
|
|
| 23 May 2012 11:08 AM |
| I need a script that give you tool when you use a the teleporter. |
|
|
| Report Abuse |
|
|
Shockfi
|
  |
| Joined: 22 May 2012 |
| Total Posts: 120 |
|
|
| 23 May 2012 11:35 AM |
| You can't ask for requests here, at least try and make on first. |
|
|
| Report Abuse |
|
|
dman739
|
  |
| Joined: 11 Dec 2009 |
| Total Posts: 4263 |
|
|
| 23 May 2012 11:39 AM |
| i'm not good at scripting, sir. |
|
|
| Report Abuse |
|
|
|
| 23 May 2012 12:36 PM |
| Goto freemodels and take a giver, use the giver scripts inside one of the teleporter blocks and it will give the player that tool whenever they go through the teleporter. |
|
|
| Report Abuse |
|
|
|
| 23 May 2012 01:49 PM |
heres a run tool script : bin = script.Parent
function onButton1Down(mouse)
local player = game.Players.LocalPlayer if player == nil then return end if script.Parent.Name == "Run" then player.Character.Humanoid.WalkSpeed=100 script.Parent.Name = "Walk" mouse.Icon = "rbxasset://textures\\ArrowCursor.png" else player.Character.Humanoid.WalkSpeed=40 script.Parent.Name = "Run" mouse.Icon = "rbxasset://textures\\ArrowCursor.png" end end
function onSelected(mouse) mouse.Icon = "rbxasset://textures\\ArrowCursor.png" mouse.Button1Down:connect(function() onButton1Down(mouse) end) end
bin.Selected:connect(onSelected)
|
|
|
| Report Abuse |
|
|