|
| 31 Jan 2014 08:09 PM |
the script will be this brick that welds a player in a laying position and freezes him/her respectivly there until the humanoid connected to it dies or resets
and when you are stuck there it makes a decal appear on a brick (so it would change the transparency of that decal)
|
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 31 Jan 2014 08:12 PM |
/support
http://www.roblox.com/Death-specs-UPDATE-COMING-SOON-item?id=141324849 |
|
|
| Report Abuse |
|
|
| |
|
Vuva
|
  |
| Joined: 22 Jan 2010 |
| Total Posts: 1102 |
|
|
| 31 Jan 2014 08:24 PM |
/support #Shedletsky #AndroRequiem2014# AndroRequiem4President |
|
|
| Report Abuse |
|
|
|
| 01 Feb 2014 09:20 AM |
| arg whys it so hard to find a scripter |
|
|
| Report Abuse |
|
|
|
| 08 Apr 2014 02:48 AM |
| becuase scripting makes u like men |
|
|
| Report Abuse |
|
|
| |
|
|
| 28 May 2014 06:22 PM |
| djagn0 d0esnt want t0 because andros smelly l0l |
|
|
| Report Abuse |
|
|
maxomega3
|
  |
| Joined: 11 Jun 2010 |
| Total Posts: 10668 |
|
| |
|
|
| 28 May 2014 10:09 PM |
| support again to help smelly old andro |
|
|
| Report Abuse |
|
|
|
| 28 May 2014 10:14 PM |
| Ill try to do tomorrow but im not the best scriptr XD |
|
|
| Report Abuse |
|
|
|
| 28 May 2014 10:21 PM |
| 5/10 would want to be welded to |
|
|
| Report Abuse |
|
|
| |
|
|
| 28 May 2014 11:08 PM |
"why is it so hard to find a scripter"
Chexk in the wiki tutorials for a scripter, not here.
Script yourself. |
|
|
| Report Abuse |
|
|
|
| 28 May 2014 11:08 PM |
Okay, IDK about the welding part; Im no good at welding, but keeping the humanoid there and touching the brick, here
function freeze()
char = script.Parent:FindFirstChild("Humanoid")
if char ~= nil then
char.Parent.LLeg.Anchored = true char.Parent.RLeg.Anchored = true char.Parent.Torso.Anchored = true char.Parent.RArm.Anchored = true char.Parent.LArm.Anchored = true char.Parent.Head.Anchored = true
end
end
I know there is a quicker way on the anchoring, I just don't remember it...and I'm not 100% sure this works. |
|
|
| Report Abuse |
|
|
|
| 28 May 2014 11:09 PM |
function freeze()
char = script.Parent:FindFirstChild("Humanoid")
if char ~= nil then
char.Parent.LLeg.Anchored = true char.Parent.RLeg.Anchored = true char.Parent.Torso.Anchored = true char.Parent.RArm.Anchored = true char.Parent.LArm.Anchored = true char.Parent.Head.Anchored = true
end
end
script.Parent.Touched:connect(freeze) --forgot to call the function -_- |
|
|
| Report Abuse |
|
|
Vuva
|
  |
| Joined: 22 Jan 2010 |
| Total Posts: 1102 |
|
|
| 28 May 2014 11:09 PM |
| Why is this getting bumped after about 4 months ಠ_ಠ |
|
|
| Report Abuse |
|
|
|
| 28 May 2014 11:12 PM |
function gameon(char)
plr = char.Parent.Name
plrs = game.Players:GetPlayers()
childs = plrs:FindFirstChild(plr)
if childs ~= nil then
return char
end
end
--making sure its a player
function freeze()
char = script.Parent:FindFirstChild("Humanoid")
gameon(char) --call dis function
if char ~= nil then
char.Parent.LLeg.Anchored = true char.Parent.RLeg.Anchored = true char.Parent.Torso.Anchored = true char.Parent.RArm.Anchored = true char.Parent.LArm.Anchored = true char.Parent.Head.Anchored = true
end
end
script.Parent.Touched:connect(freeze)
--Again I'm not sure if it works |
|
|
| Report Abuse |
|
|
|
| 28 May 2014 11:14 PM |
| Wait its been up for 4 months? O.O |
|
|
| Report Abuse |
|
|
| |
|
|
| 29 May 2014 05:31 PM |
| how many scripters does it take to script in a light bulb |
|
|
| Report Abuse |
|
|
|
| 30 May 2014 05:23 PM |
| ส็็็็็็็็็็็็็็็็็็็็็็็็็༼ ຈل͜ຈ༽ส้้้้้้้้้้้้้้้้้้้้้้้ i dunno |
|
|
| Report Abuse |
|
|
|
| 30 May 2014 05:38 PM |
script.Parent.Touched:connect(functuion(h) for _,v in ipairs(h.Parent) do if v:IsA("BasePart") then v.Anchored = true end end end
There's your anchoring part :P |
|
|
| Report Abuse |
|
|