superj9Join Date: 2007-12-20 Post Count: 1476 |
i need a script for lava that makes stuff melt and sertin people dont melt o and it kills if one limb gets burned ok plz make it... |
|
|
so you need a script that when someone touches the lava it burns it up if the thing touching it isn't on a list of things that don't die? |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
make it!!!!!!!!!!!!?!?!??!?!??!?!??!??!? |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
makeeeeeeeeeeeeeeeee itttttttttttttttttttttttttttttttttttttt!!!!!!!!! |
|
killvillJoin Date: 2008-04-19 Post Count: 18 |
i dont knok how to script |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
someone....... |
|
|
you basically need an admin door that has a modified script. I MIGHT be able to make that, just tell me specifics. Only certain people can get past wothout getting hurt. But what happens when the people that arent on the list touch it? Do they just die? Do they burst into flames? What happens? |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
they melt and it melts bricks |
|
gergy008Join Date: 2008-03-16 Post Count: 7039 |
[ Content Deleted ] |
|
|
HMMM... That may be hard... Would it be ok if the body shrinks then a bunch of little bricks come out of it? Sort Like melting... |
|
FlashJoeWTop 100 PosterJoin Date: 2007-12-24 Post Count: 4886 |
that's just overcomplicateing stuff... try this
function onTouched(hit)
h = hit.Parent:findFirstChild("Humanoid")
if h ~= nil then
if hit.Parent.Name ~= ("p1","p2","p3","p4","p5","p6") then
hit:Remove()
end
end
end
script.Parent.Touched:connect(onTouched)
that could work, not done permissions before though |
|
|
I might be able to mix that with a VIP door, then it might work... |
|
|
This Worked For Me:
___________________________________________________________________________
pod = script.Parent
permission = { "chrisrune314" , "name" , "name" , "name" , "name" , "name"} --Replace "name" with ppl that wont get hurt. Delete Extras.
Door = script.Parent
function onTouched(part)
function checkOkToLetIn(name)
for i = 1,#permission do
if (string.upper(name) == string.upper(permission[i])) then return true end
end
return false
end
function onTouched(hit)
print("Door Hit")
local human = hit.Parent:findFirstChild("Humanoid")
if (human ~= nil ) then
-- a human has touched this door!
print("Human touched door")
-- test the human's name against the permission list
if (checkOkToLetIn(human.Parent.Name)) then
print("Human passed test")
Door.Transparency = .6
Door.CanCollide = false
wait(0.7)
Door.CanCollide = true
Door.Transparency = 0
else h = hit.Parent:findFirstChild("Humanoid")
if h ~= nil then
if hit.Parent.Name ~= ( "p1" , "p2" , "p3" , "p4" , "p5" , "p6" ) then
part.BrickColor = BrickColor.new(26)
wait(.3)
part.Transparency = 0.2
wait(.3)
part.Transparency = 0.4
wait(.3) --all this makes it burn
part.Transparency = 0.6
wait(.3)
part.Transparency = 0.8
wait(.3)
part:Remove()
end
end
end
script.Parent.Touched:connect(onTouched)
end
end
end
connection = Door.Touched:connect(onTouched)
function onTouched(hit) |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
wow big script... |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
that script doesnt make bricks melt but... i dont care! |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
that script doesnt work... |
|
JigglesJoin Date: 2008-02-02 Post Count: 46 |
i want a scrip like it to i cant find it |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
theyr rare |
|
|
Hmm... It worked for me, I died and a bunch of spheres appeared where I was. It looked like i melted (to me). |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
it wonk work can u plz make script a model..... |
|
|
Yea ill make a working one. Or at least try. |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
ok! |
|
gergy008Join Date: 2008-03-16 Post Count: 7039 |
[ Content Deleted ] |
|
gergy008Join Date: 2008-03-16 Post Count: 7039 |
[ Content Deleted ] |
|
superj9Join Date: 2007-12-20 Post Count: 1476 |
does that one work?... |
|