|
You need to group the whole place (everything in the Workspace) then insert this into it.
model = script.Parent
while true do
wait(120)
local b = model:clone()
model:remove()
b:clone().Parent = game.Workspace
b:MakeJoints()
end |
|
|
I need help with...
Everytime I edit a script, by a little bit. Say I change the wait() thing. The script normally works, but when I change wait() or something, it doesn't notice the change at all. No, I don't quit then this happens. While I'm still in solo mode, working on the script.
PLEASE HELP! |
|
|
That's your problem. Don't ever try to script in solo mode. |
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
Yeah. Dont script in Solo |
|
AlgoritmiJoin Date: 2007-09-22 Post Count: 528 |
yo im having touble with making a script that will take a script and copy it then paste it in the torso of anyone who just entered my place then run it, can anyone help? |
|
|
Place this script in that script.
function onPlayerEntered(newPlayer)
local b = script.Parent:clone()
b:clone().Parent = newPlayer.Character.Torso
end
game.Players.ChildAdded:connect(onPlayerEntered) |
|
AlgoritmiJoin Date: 2007-09-22 Post Count: 528 |
thanks mate that was fast ;) |
|
|
Yes but now I can't reply till' 4:00 PM Eastern time. Cya! |
|
|
I'm back! Anyone need help? |
|
|
here. this works but not twice. I need it to work more then one time.
function onChatted(msg, recipient, speaker)
local source = string.lower(speaker.Name)
msg = string.lower(msg)
if (msg == "water") then
w = game.Debris.water:clone()
w.Parent = game.Workspace
w.Position = Vector3.new(0,0,0)
end
end
function onPlayerEntered(newPlayer)
newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
end
game.Players.ChildAdded:connect(onPlayerEntered)
---------------------------------------------------------------------------------------- |
|
|
I have no idea why it wouldn't work. |
|
|
agent do u think u can find make or fix a jail script because i really want one of those and if u cant i understand |
|
|
I'm sorry I can't make a jail script. |
|
MustalidJoin Date: 2008-01-11 Post Count: 28 |
I want to make something follow u around and kill u. I have had no success. I tried using other poeples, but that is'nt working either. I NEED HELP!!!! |
|
|
I need a regenerate script for whole level for every 5 mins and a Click Displacer script or whatever its called that destroys the object the script is inserted into. If the second ones not possible dont worry about it.
Thanks. |
|
|
pieguy, look at the first post on this page. I have never tried to make a Click Detector so I don't know how. |
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
Heres a test. See if you can fix it.
-----------------
while true do
if numPlayer >= 3 then
g = Instance.new"Hint"
g.Parent = game.Workspace
g.Text = Starting New Game
wait(3)
f = game.Players:GetChildren()
P = p[math.Random(1, #f)]
wait(2)
P.Character.Torso.Cframe = Cframe.new(0,5,0)
if p[i].Name ~= P.Name then
p[i].Torso.Cframe = Cframe.new(-50,5,-50)
end
end
-----------------
Try it. I placed many errors in it on purpose. |
|
|
Agent, would this work?
while do true
Door = game.Workspace.Door
if (Door.Transparency = 1) then
Door.Transparency = 0
end
Anyone can answer.
|
|
John1626Join Date: 2008-01-01 Post Count: 420 |
Specs: Armor that, when touched, will give you plus 10 Max Health, and adds a Brick to the front and to the back of Chest. But it also needs to go away after you equip a different one. Also, it needs to stay on if you die.
Help please!
Plz answer this time. |
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
@ Nasa
while true do
wait(60) --Replace with amount of seconds
Door = game.Workspace.Door
if Door.Transparency == 1 then
Door.Transparency = 0
end
end
|
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
@ Green
function onChatted(msg, recipient, speaker)
local source = string.lower(speaker.Name)
msg = string.lower(msg)
if (msg == "water") then
w = game.Debris.water
w:clone().Parent = game.Workspace
w.Position = Vector3.new(0,0,0)
end
end
function onPlayerEntered(newPlayer)
newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
end
game.Players.ChildAdded:connect(onPlayerEntered)
|
|
|
1) can you make me a speech shop script (you say "buy wepname" and u get the wep if u have enoguh money)
2) can you tell me a lua script for a delete tool (so i can make it so you hold a tool to delete so people can tell if your deleting) |
|
WirodeuTop 100 PosterJoin Date: 2008-01-04 Post Count: 10853 |
Take a look at my topic please. |
|
AlgoritmiJoin Date: 2007-09-22 Post Count: 528 |
thanks Broofrange you just saved me a load of time |
|
AlgoritmiJoin Date: 2007-09-22 Post Count: 528 |
really sorry for the double post nvm you did not solve my probleme but i know what will, its fairly easy i would amagine, a script in the *workspace* that makes it so that when you touch a brick named Part it becomes locked |
|