catsplz
|
  |
| Joined: 08 Sep 2011 |
| Total Posts: 17789 |
|
|
| 12 Jan 2014 07:39 PM |
so my place is this build to survive game ive scripted and you basically have 5 minutes to build something and when the time is up the killers come out of the lighting and into the workspace but when they go into the workspace they are all unattached and dead. can someone please help?
|
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 07:41 PM |
:MakeJoints() -- put this in the line AFTER it's moved to Workspace. Ex: model:MakeJoints()
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~~CAT ★★★★ General Shawnyg~ |
|
|
| Report Abuse |
|
|
catsplz
|
  |
| Joined: 08 Sep 2011 |
| Total Posts: 17789 |
|
|
| 12 Jan 2014 07:42 PM |
| ive tried that, but the killers are grouped together in a model |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 07:44 PM |
Paste the script here.
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~~CAT ★★★★ General Shawnyg~
|
|
|
| Report Abuse |
|
|
catsplz
|
  |
| Joined: 08 Sep 2011 |
| Total Posts: 17789 |
|
|
| 12 Jan 2014 07:46 PM |
while true do wait(1) game.Lighting.set.Parent = game.Workspace wait(0.1) game.Workspace.msg.Text = "Time left to build: 4 minutes" wait(60) game.Workspace.msg.Text = "Time left to build: 3 minutes" wait(60) game.Workspace.msg.Text = "Time left to build: 2 minutes" wait(60) game.Workspace.msg.Text = "Time left to build: 1 minute" wait(60) game.Workspace.msg.Text = "Times up! Here they come..." wait(1) local Part = game:GetService("Workspace") ["Part"] Part.Locked = true wait(0.1) game.Debris.two.Parent = game.Lighting wait(0.1) game.Lighting.one.Parent = game.Debris wait(0.1) game.Lighting.aliens.Parent = game.Workspace wait(0.1) game.Workspace.set.Parent = game.Lighting wait(0.1) game.Workspace.msg.Text = "2 minutes till the Aliens leave" wait(60) game.Workspace.msg.Text = "1 minute till the Aliens leave" wait(60) game.Workspace.aliens.Parent = game.Lighting wait(0.1) game.Workspace.msg.Text = "The aliens are gone!" wait(0.1) local Part = game:GetService("Workspace") ["Part"] Part.Locked = false wait(0.1) game.Debris.one.Parent = game.Lighting wait(0.1) game.Lighting.two.Parent = game.Debris wait(5) game.Workspace.msg.Text = "New game starting now" wait(1) end |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 07:49 PM |
If MakeJoints alone didn't work, how about this.
g = game.Workspace.aliens:GetChildren() for i = 1, #g do g[i]:MakeJoints() end
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~~CAT ★★★★ General Shawnyg~ |
|
|
| Report Abuse |
|
|
catsplz
|
  |
| Joined: 08 Sep 2011 |
| Total Posts: 17789 |
|
|
| 12 Jan 2014 07:55 PM |
still wont work
while true do wait(1) game.Lighting.set.Parent = game.Workspace wait(0.1) game.Workspace.msg.Text = "Time left to build: 4 minutes" wait(60) game.Workspace.msg.Text = "Time left to build: 3 minutes" wait(60) game.Workspace.msg.Text = "Time left to build: 2 minutes" wait(60) game.Workspace.msg.Text = "Time left to build: 1 minute" wait(60) game.Workspace.msg.Text = "Times up! Here they come..." wait(1) local Part = game:GetService("Workspace") ["Part"] Part.Locked = true wait(0.1) game.Debris.two.Parent = game.Lighting wait(0.1) game.Lighting.one.Parent = game.Debris wait(0.1) game.Lighting.aliens.Parent = game.Workspace wait(0.1) g = game.Workspace.aliens:GetChildren() for i = 1, #g do g[i]:MakeJoints() end wait(0.1) game.Workspace.set.Parent = game.Lighting wait(0.1) game.Workspace.msg.Text = "2 minutes till the Aliens leave" wait(60) game.Workspace.msg.Text = "1 minute till the Aliens leave" wait(60) game.Workspace.aliens.Parent = game.Lighting wait(0.1) game.Workspace.msg.Text = "The aliens are gone!" wait(0.1) local Part = game:GetService("Workspace") ["Part"] Part.Locked = false wait(0.1) game.Debris.one.Parent = game.Lighting wait(0.1) game.Lighting.two.Parent = game.Debris wait(5) game.Workspace.msg.Text = "New game starting now" wait(1) end |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 07:58 PM |
I'm not sure why this isn't working. Tell me, is the model that contains aliens like this? model>alien, alien, alien ? If not, explain.
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~~CAT ★★★★ General Shawnyg~ |
|
|
| Report Abuse |
|
|
catsplz
|
  |
| Joined: 08 Sep 2011 |
| Total Posts: 17789 |
|
|
| 12 Jan 2014 08:01 PM |
here ill give you a screenshot of it because i cant really explain that well lol http://imgbomb.com/i/?CK6QE |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 08:15 PM |
Well, I'm stumped. Let's hope some other scripters see the problem.
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~~CAT ★★★★ General Shawnyg~ |
|
|
| Report Abuse |
|
|
|
| 12 Jan 2014 08:20 PM |
Try this:
while true do wait(1) game.Lighting.set.Parent = game.Workspace wait(0.1) game.Workspace.msg.Text = "Time left to build: 4 minutes" wait(60) game.Workspace.msg.Text = "Time left to build: 3 minutes" wait(60) game.Workspace.msg.Text = "Time left to build: 2 minutes" wait(60) game.Workspace.msg.Text = "Time left to build: 1 minute" wait(60) game.Workspace.msg.Text = "Times up! Here they come..." wait(1) local Part = game:GetService("Workspace") ["Part"] Part.Locked = true wait(0.1) game.Debris.two.Parent = game.Lighting wait(0.1) game.Lighting.one.Parent = game.Debris wait(0.1) aliens = game.Lighting.aliens:clone() aliens.Parent = game.Workspace aliens:MakeJoints() wait(0.1) game.Workspace.set.Parent = game.Lighting wait(0.1) game.Workspace.msg.Text = "2 minutes till the Aliens leave" wait(60) game.Workspace.msg.Text = "1 minute till the Aliens leave" wait(60) aliens:remove() wait(0.1) game.Workspace.msg.Text = "The aliens are gone!" wait(0.1) local Part = game:GetService("Workspace") ["Part"] Part.Locked = false wait(0.1) game.Debris.one.Parent = game.Lighting wait(0.1) game.Lighting.two.Parent = game.Debris wait(5) game.Workspace.msg.Text = "New game starting now" wait(1) end
|
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 12 Jan 2014 08:21 PM |
| Make sure you parent before you make joints |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 08:21 PM |
He already tried that.
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~~CAT ★★★★ General Shawnyg~ |
|
|
| Report Abuse |
|
|
lolb3
|
  |
| Joined: 16 Jan 2010 |
| Total Posts: 2268 |
|
|
| 12 Jan 2014 08:22 PM |
idiots who cant script proper zombie arms damage
problem is that the arm deals damage to any humanoid so it kills itself because its touching itself |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 08:26 PM |
Well, yeah. That could be the reason. Post your zombie arm script and I'll fix it up for you. ( I have to go in a few mins, so hurry up)
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~ ~Glory to CAT!~ !CAT General Shawnyg~ |
|
|
| Report Abuse |
|
|
catsplz
|
  |
| Joined: 08 Sep 2011 |
| Total Posts: 17789 |
|
|
| 12 Jan 2014 08:27 PM |
| what do you mean by zombie arm script? |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 08:28 PM |
The script that's in your alien's arm. It's killing itself.
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~ ~Glory to CAT!~ !CAT General Shawnyg~ |
|
|
| Report Abuse |
|
|
catsplz
|
  |
| Joined: 08 Sep 2011 |
| Total Posts: 17789 |
|
|
| 12 Jan 2014 08:29 PM |
i found this script in the arm:
function touched(hit) hit:BreakJoints() end
script.Parent.Touched:connect(touched)
|
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 08:31 PM |
script.Parent.Touched:connect(function(hit) if hit.Parent:findFirstChild("Humanoid") and hit.Parent.Humanoid.Name ~= "Alien" then hit:BreakJoints() end end)
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~ ~Glory to CAT!~ !CAT General Shawnyg~ |
|
|
| Report Abuse |
|
|
catsplz
|
  |
| Joined: 08 Sep 2011 |
| Total Posts: 17789 |
|
|
| 12 Jan 2014 08:33 PM |
@shawn do i put that into the arms? |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 12 Jan 2014 08:34 PM |
Yes. And delete the old script that was in the arms.
~Hope I helped, if you need a script, PM me first then buy this when I tell you to: http://www.roblox.com/My-Script-Shirt-item?id=118961994~ ~Glory to CAT!~ !CAT General Shawnyg~ |
|
|
| Report Abuse |
|
|