|
| 26 Feb 2014 10:07 PM |
How would I do this? Sorry for nubbiness... I also need it to switched a players team to "Humans" witch is Bright Red. And give them the linked sword that is in lighting. |
|
|
| Report Abuse |
|
|
call23re
|
  |
| Joined: 11 Nov 2010 |
| Total Posts: 9070 |
|
|
| 26 Feb 2014 10:08 PM |
Clone the tool and put it in the players character after the round starts.
-"The wise never quote." |
|
|
| Report Abuse |
|
|
|
| 26 Feb 2014 10:15 PM |
How would I do this? And switch the team color?
player.TeamColor = "Bright Red" --??? sc = sword:clone() sc.Parent = player.Backpack --??? These won't work! I can tell you that without running it. |
|
|
| Report Abuse |
|
|
vintus12
|
  |
| Joined: 16 Aug 2009 |
| Total Posts: 39 |
|
|
| 26 Feb 2014 10:18 PM |
The only way I know how to do this, is to go on Roblox studio, edit mode.
Then paste the tool you want the player to start with in the 'StarterPack' folder
If need be, you can search for a model of 'Parachute tool' for example and just drag it into the 'StarterPack'
I hope that makes sense |
|
|
| Report Abuse |
|
|
|
| 26 Feb 2014 10:23 PM |
| I'm talking like. Having you only get tools whne you are transfered to a certian team. |
|
|
| Report Abuse |
|
|
|
| 26 Feb 2014 10:24 PM |
| Put it in starterpack,doesn't require scripting.. |
|
|
| Report Abuse |
|
|
|
| 26 Feb 2014 10:27 PM |
If on a certain team? --localscript :3 StarterGui -LocalScript Lighting -Tool
plr = game.Players.LocalPlayer wait(2.5) while wait() do if plr.TeamColor == BrickColor.new("Really red") and not plr.Backpack:findFirstChild("Tool") then T = game.Lighting.Tool:clone() T.Parent = plr.Backpack end end |
|
|
| Report Abuse |
|
|
|
| 26 Feb 2014 10:33 PM |
| What you are saying is put this in a localscript in StarterGui? |
|
|
| Report Abuse |
|
|
| |
|
|
| 26 Feb 2014 10:37 PM |
| Okay, is it safe to Re-Name "Tool" to "Sword"? |
|
|
| Report Abuse |
|
|
|
| 26 Feb 2014 10:41 PM |
Yes,change everywhere it says "Tool" to the tools name Example Lighting -RocketLauncher U would then change "Tool" to "RocketLauncher" That sorta thing :) |
|
|
| Report Abuse |
|
|