patsfan07Join Date: 2007-10-18 Post Count: 5373 |
i have beenlooking for weeks to collect as many scripts as possible now u can add some to my collection. and ill give a script for something if u need one |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
any1 |
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
I need help with this script, and if you edit it I will make a script for you, and you can use the script after you edit it.
Here it is:
function onTouched(hit)
building = game.Workspace.Building1.side1
backup = game.Workspace.Building1.side1:clone()
building:remove()
wait(3)
building = backup:clone()
building.Parent = game.Workspace.Building1
building.Name = "side1"
building.Anchored = true
building.Locked = false
model:makeJoints()
end
script.Parent.Touched:connect(onTouched) |
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
The problem is it only works once and then whan I try it again it won't work until I quit and get back on. It is supposed to make on side of a building dissapear. Please Edit it quickly I need it for my place. |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
function onTouched(hit)
building = game.Workspace.Building1.side1
backup = game.Workspace.Building1.side1:clone()
building:remove()
wait(3)
building = backup:clone()
building.Parent = game.Workspace.Building1
building.Name = "side1"
building.Anchored = true
building.Locked = false
model:makeJoints()
wait(100) |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
i think all u did was u forgot to make it repeat |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
or if that doesnt work do
while true do
function onTouched(hit)
building = game.Workspace.Building1.side1
backup = game.Workspace.Building1.side1:clone()
building:remove()
wait(3)
building = backup:clone()
building.Parent = game.Workspace.Building1
building.Name = "side1"
building.Anchored = true
building.Locked = false
model:makeJoints()
wait(100) |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
use this one i forgot one line in the other
while true do
function onTouched(hit)
building = game.Workspace.Building1.side1
backup = game.Workspace.Building1.side1:clone()
building:remove()
wait(3)
building = backup:clone()
building.Parent = game.Workspace.Building1
building.Name = "side1"
building.Anchored = true
building.Locked = false
model:makeJoints()
wait(100)
end |
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
y wait 100? |
|
hk1777Join Date: 2007-10-03 Post Count: 6522 |
while true do
building = game.Workspace.Building1
backup = game.Workspace.Building1:clone()
building:remove()
wait(3)
building = backup:clone()
building.Parent = game.Workspace
building.Anchored = true
building.Locked = false
model:makeJoints()
wait(100)
end
=================
that script should work it just regens the hole building |
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
patsfan neither of yours work.
and I don't want to regen I want to make half of the building disapear when they touch a button. |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
u said it did it once i thought? |
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
I know it only works once then when I try it again it doesn't work |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
so it falls once and do u need to put the side back on? |
|
Troyg12Join Date: 2008-01-11 Post Count: 941 |
This script makes your head a ufo!!YAY!!!!
_______________________________
game.Workspace.YourNameHere.Head.Mesh.Scale = Vector3.new (-20, 1, 1)
________
lol |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
cool script |
|
ryan1999Join Date: 2008-03-26 Post Count: 1 |
UUUUUUHHH it dosent work how do i make a script help me plz or my friend won't be my friend plz plz any script just make it work plz plz |
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
go to the help page but it will take a long time to learn. I've been learning for a month and I barely no anying about it. |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
ok heres one random scrip that does work
Random Crush Block Coming Out of Nowhere
while true do
wait(13)
local p = Instance.new("Part")
p.Parent = game.Workspace
p.Position = Vector3.new(0, 100, 0) --Change the numbers to change the local of the platform.
p.Size = Vector3.new(25, 25, 25) --Change the numbers to change the size from it.
p.BrickColor = BrickColor.new(1) --Look at the wiki and Scripting Help, the first option on the page and look for Pallete Colors to Numbers.
p.Locked = true
p.Anchored = false
wait(7)
p:remove()
end
|
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
you need to take out the local before p I think mabye and are you sure that's the right poistion? |
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
message script:
while true do
wait(120)--put how long you want it to wait
local m = Instance.new("message")--you might need to make Instance uncapitle I forget
m.Parent = game.Worspace
m.Text = "Enter Your Text Here"
wait(5)--how lng you want message to stay up
m:remove()
end |
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
I wrote this by myself so their might be ome typo's. |
|
AzazelJoin Date: 2007-05-09 Post Count: 130 |
[ Content Deleted ] |
|
patsfan07Join Date: 2007-10-18 Post Count: 5373 |
my script does work. |
|
ajm1996Top 100 PosterJoin Date: 2007-08-14 Post Count: 13837 |
patsfan wat do you want me to make? |
|