|
| 07 Feb 2016 10:43 PM |
| title says it. if you WANT to make me a script, use it with a .touch function. i dont want to use the spawns. |
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 07 Feb 2016 10:46 PM |
| player.TeamColor = BrickColor.new("NameOfBrickColorOfTeamHere") |
|
|
| Report Abuse |
|
|
|
| 07 Feb 2016 10:49 PM |
| in the output, it says:attempt to call a nil value |
|
|
| Report Abuse |
|
|
gergy008
|
  |
| Joined: 16 Mar 2008 |
| Total Posts: 7039 |
|
|
| 07 Feb 2016 10:51 PM |
You need to get the player, that wasn't a complete script.
Play today! So much fun the more people that join: http://www.roblox.com/games/2047642/NEW-Build-A-Fortune-v0-9-6-Fixes |
|
|
| Report Abuse |
|
|
|
| 07 Feb 2016 10:54 PM |
i used this
function touch() game.Players.LocalPlayer.TeamColor = BrickColor.new("Really black") end
script.Parent.Touched:connect() |
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 07 Feb 2016 10:56 PM |
local function touch(hit) local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player then player.TeamColor = BrickColor.new("Really black") end end
script.Parent.Touched:connect(touch)
|
|
|
| Report Abuse |
|
|
| |
|