RedXIIJoin Date: 2008-10-10 Post Count: 49 |
This forum is a Q&A that will pan out with the comments. You ask, the comunity answers with examples. For example:
Telamon: Could you make me a suicide script?
Builderman: Here is a suicide script:
brick = game.Workspace.Brick --tagging the brick
function onTouch(part) --the function
brick.Transparency = 1 --what the function is to do with the brick
wait(1)
brick.Transparency = 0
end
brick.Touched:connect(onTouch) --listening event
I'll start: make me a script that will make a kill brick kill. Note: be creative. make people interested: |
|
|
That's not a suicide script... |
|
TreeMerp9Join Date: 2009-07-10 Post Count: 561 |
Um no requests... |
|
bloob827Join Date: 2010-08-01 Post Count: 6867 |
*FACEWALL* |
|
Raphael7Join Date: 2008-12-03 Post Count: 2479 |
brick = script.Parent
function onTouch(hit)
if h == hit:findFirstChild("Humanoid") then -- I dont know if only one '='
h.Humanoid.Health = 0
end
end -- If the ends are wrong put one end below.
brick:connect(onTouch)
|
|
TreeMerp9Join Date: 2009-07-10 Post Count: 561 |
brick = script.Parent
function onTouch(hit)
h = hit.Parent:findFirstChild("Humanoid")
if h then
h.Health = 0
end
end
brick:connect(onTouch) |
|
TreeMerp9Join Date: 2009-07-10 Post Count: 561 |
brick = script.Parent
function onTouch(hit)
h = hit.Parent:findFirstChild("Humanoid")
if h then
h.Health = 0
end
end
brick.Touched:connect(onTouch) |
|
TreeMerp9Join Date: 2009-07-10 Post Count: 561 |
As for creativity:
brick = script.Parent
function onTouch(hit)
h = hit.Parent:findFirstChild("Humanoid")
if h then
local f = Instance.new("ForceField", hit.Parent)
wait(1.5)
h.Health = 0
end
end
brick:connect(onTouch) |
|
|
Raphael7Join Date: 2008-12-03 Post Count: 2479 |
@Tree,
Your missing h.Humanoid.Health! |
|
bloob827Join Date: 2010-08-01 Post Count: 6867 |
@Raphael
local h = hit.Parent:findFirstChild("Humanoid")
That already defines the Humanoid. |
|
robobot78Join Date: 2008-10-18 Post Count: 92 |
brick = script.Parent
function onTouch(hit)
h = hit.Parent:findFirstChild("Humanoid")
if h then
local f = Instance.new("ForceField", hit.Parent)
wait(1.5)
h.Health = 0
end
end
brick:connect(onTouch)
end |
|
TreeMerp9Join Date: 2009-07-10 Post Count: 561 |
How does mine fail? It works perfectly, I lack creativity, but still?
brick = script.Parent
function onTouch(hit)
h = hit.Parent:findFirstChild("Humanoid")
if h then
local f = Instance.new("ForceField", hit.Parent)
wait(1.5)
h.Health = 0
end
end
brick.Touched:connect(onTouch) |
|
RedXIIJoin Date: 2008-10-10 Post Count: 49 |
OK. now to the Gritty and Nitty. (I met them!)
Create a script that can make a Leader board with:
Teams
Points
KOs
WOs
Points for KOs (3)
Points for flag steal(200)
I will test it. If it works, bingo we go to the next one and you get credit in the wall of Fame. ( I found It ) |
|
RedXIIJoin Date: 2008-10-10 Post Count: 49 |
For bonus points:
Make a script that will kill a humanoip 1.5 seconds after receiving a forrce fileld, unless wearing a VIP shirt ( specify as www.vip.com ) |
|
|
RedXIIJoin Date: 2008-10-10 Post Count: 49 |
what do you mean "no requests"? Just becaus it may seem long to you, it is a basic war game script! |
|
|
You are requesting us to make a script. We dont make scripts.
And no, those scripts arnt really that hard to make, nor do they take too long. |
|
pauljklJoin Date: 2008-10-23 Post Count: 9364 |
I lol at the attempted request made out to be not a request |
|
GemHoundJoin Date: 2010-09-02 Post Count: 817 |
@RedXII
You can have a knife or something and make it so that instead of them killing other people with it make the movement backwards and have it stab the user |
|
Legend26Join Date: 2008-09-08 Post Count: 10586 |
Roblox:GetUser(1243775):Ban("Spamming", 365) --One year ban. |
|
RedXIIJoin Date: 2008-10-10 Post Count: 49 |
I will say this once again: I am amused at your foolhardy attempt at robbing me of my pride with your words like a blade of steel in my back. My Will of Fire will not be put out, as I am like a flame, and if you touch a flame, you get burned. |
|
Gavin9788Join Date: 2010-11-24 Post Count: 1389 |
You haven't even said that once.
I never knew fire could be burnt, because I just did. :3 |
|
McBlockerJoin Date: 2008-11-16 Post Count: 1721 |
Umm... you're making a thread that's basically what the section is for... |
|
Raphael7Join Date: 2008-12-03 Post Count: 2479 |
Red doesnt know how to script, that's why he's taking people to do his work.. |
|