randomrobotTop 100 PosterJoin Date: 2007-07-02 Post Count: 11636 |
D'OH!
That's the thing about minigames I might not be able to do in 5 years. x__x |
|
randomrobotTop 100 PosterJoin Date: 2007-07-02 Post Count: 11636 |
3 pages already?
lol |
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
--Make sure a Tag is inserted before start of minigame
while true do
f = game.Players:children()
for i = 1, #f do
if f[i].Character:findFirstChild("Tag") == nil then
wait(0)
f = Instance.new("Message")
f.Parent = game.Workspace
f.Text = "Everyone died. Awww, too bad"
wait(3)
f:remove()
end
end
end
|
|
DingDong272Top 100 PosterJoin Date: 2007-12-08 Post Count: 9860 |
Hey guys, who do u think are the best scripters in ROBLOX? 1-10? (not including admins)
1.Anaminus
2.Are92
3.Gamer3D
4.Zuka
5.Aeacus
6.Rombom
7.I know I'm forgetting someone that goes here...
8.BROofRANGE
9.Dingdong272 (me!!)
10.randomrobot
I have no idea. maybe it goes random, then BRO, then me. IDK. Make up your own. |
|
|
How do I add tags into people?
I have no idea how too, And when I asked for a mini game script I was asking for the whole script not just that one part.
I never explain what I want very well sorry. |
|
DingDong272Top 100 PosterJoin Date: 2007-12-08 Post Count: 9860 |
To put tags in someone, do this:
function newPlayer(player)
local v = Instance.new("NumberValue")
v.Name = "Tag"
v.Value = 0
v.Parent = player
end
game.Players.ChildAdded:connect(newPlayer)
That value will NEVER go away, trust me. |
|
|
Here's a challenge:
Find the model Water- rusts metal
Edit it so that when the bricks are a certain color, they don't rust (turn dark orange). |
|
DingDong272Top 100 PosterJoin Date: 2007-12-08 Post Count: 9860 |
Explain it a little more. I don't get it. |
|
|
|
Explain my script? Ok.
When a brick is a certain color (I acutally need two colors), and it goes into the water, it doesn't turn dark orange. When it is any other color and goes into the water, it turns dark orange. |
|
DingDong272Top 100 PosterJoin Date: 2007-12-08 Post Count: 9860 |
function onTouched(part)
if script.Parent.BrickColor ~= BrickColor.new(21) then --if it is red then don't
if part.Parent.Name ~= "Water" then return "Nooby toucher" end
script.Parent.BrickColor = BrickColor.new(38)
end
script.Parent.Touched:connect(onTouched)
simple. |
|
|
Your script doesn't work. I tested. |
|
DingDong272Top 100 PosterJoin Date: 2007-12-08 Post Count: 9860 |
make sure the parts are called "Water" |
|
randomrobotTop 100 PosterJoin Date: 2007-07-02 Post Count: 11636 |
Another end...? |
|
|
I need a script that will see if theres one player left in the game then it will give them 5 points. |
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
1.Anaminus
2.Miked
3.Zuka
4.Aeacus
5.Rombom
6.DingDong272
7.RandomRobot
8.BROofRANGE
9. RandomRobot
10. Someone... |
|
|
You put RandomRobot twice. |
|
coelho714Join Date: 2007-06-07 Post Count: 4230 |
Right. I want to do a challenge to you. Doesn't matter if it cause lag. I want a script that makes WAVES that sometimes suddenly "shoot" a bit of water. That would lag, plus: I want it to be random. Isn't valid using Clockwork's Wave script at his site. You guys must to at it own. Good luck. |
|
coolsakerJoin Date: 2008-01-06 Post Count: 135 |
ok heres a challenge make a script there make plane and the human in it to go through with a script can you clear it/:o? |
|
DingDong272Top 100 PosterJoin Date: 2007-12-08 Post Count: 9860 |
Yay! I'm ranked 6 by other ppl! |
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
Yeah. You ranked me over you DingDong. I cant make a script builder xD. |
|
|
Not really a challenge, but a quick question.
When setting CharacterAppearance, do you do:
CharacterAppearance = "url"
or
CharacterAppearance = url
(URL takes place of the characterappearance, obviously, but that's not what I'm asking.) |
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
CharacterAppearance "CharacterAppearanceHere"
:P |
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
CharacterAppearance = "CharacterAppearanceHere"
:P |
|
DOOMKINGJoin Date: 2007-12-27 Post Count: 9516 |
Here's a challenge how would someone make it so let's a gate has 500 health and as soon as it health reaches 0 it removes the gate challenging? |
|