patsfan07Join Date: 2007-10-18 Post Count: 5373 |
Ok I'm working on a place that I need it so that if you are touching a spawn point for 5 seconds it converts to the color of that team. Im not sure if this is possible becuase I do not understand spawnpoints. Please help I will give you credit on my place. |
|
FlashJoeWTop 100 PosterJoin Date: 2007-12-24 Post Count: 4886 |
it's like a normal brick with extra properties... it doesn't really do much, it's just connected to a team, you could even do something like... manually add in a script that changes the team when you touch it... |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
what i need is a script that when you touch the spawn point for 5 seconds it becoems the touchers color |
|
erikrulesJoin Date: 2008-02-02 Post Count: 1554 |
thats possible. Are92 has one in his place! its awsome! |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
do you know how to make it? |
|
FlashJoeWTop 100 PosterJoin Date: 2007-12-24 Post Count: 4886 |
make it check for a player to see if they're still within the right magnitude every second |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
yes but if i change the color of the spawnpoint to red will it spawn red people? |
|
archie62Join Date: 2007-11-17 Post Count: 22 |
I dont understand scripts where do they originatly come from |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
bummp |
|
matthewbeJoin Date: 2008-05-16 Post Count: 7130 |
ow! u bumbed me! |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
can anyone help |
|
chris1989Join Date: 2007-11-30 Post Count: 2520 |
Plate = script.Parent
function onTouched(part)
local H = part.Parent:findFirstChild("Humanoid")
if H ~= nil then
local B = part.Parent:findFirstChild("Torso")
if B ~= nil then
wait(5)
Plate.BrickColor = B.BrickColor
Plate.TeamColor = B.BrickColor
end
end
end
script.Parent.Touched:connect(onTouched) |
|
KazeJoin Date: 2007-05-08 Post Count: 9448 |
:P That's Dingdong272's script from the wiki! But this is an overall easy script to make so yeah. |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
thank you! |
|