|
| 23 Mar 2015 04:04 PM |
| I need a short simple tutorial on how to make players immune to explosions. If there is a script like that already, please give me a link because I haven't found anything like it yet. I'm a newb at scripting (No surprise) and I'm trying to make an awesome game. Thx everybody :3 |
|
|
| Report Abuse |
|
|
|
| 23 Mar 2015 04:05 PM |
| Can't you edit the explosion properties (I think the harmless explosions are a new feature from late 2014 or early this year)? |
|
|
| Report Abuse |
|
|
Hibobb
|
  |
| Joined: 18 Apr 2010 |
| Total Posts: 2146 |
|
|
| 23 Mar 2015 04:07 PM |
@jimmy I think its called pressure or something like that.
Give me suggestions on the sniper rifle in this game: [http://www.roblox.com/Animations-place?id=200667607] |
|
|
| Report Abuse |
|
|
|
| 23 Mar 2015 04:10 PM |
local explosion = Instance.new("Explosion") explosion.Parent = game.Workspace explosion.Position = BRICK_NAME.Position explosion.DestroyJointRadiusPercent = 0
|
|
|
| Report Abuse |
|
|
|
| 23 Mar 2015 04:14 PM |
oh yeah and here's the function you can use
local function Splode(part) local explosion = Instance.new("Explosion") if game.Players:GetPlayerFromCharacter(part.Parent) then
explosion.Parent = game.Workspace explosion.Position = BRICK_NAME.Position explosion.DestroyJointRadiusPercent = 0 end
game.Workspace.BRICK_NAME.Touched:connect(Splode) |
|
|
| Report Abuse |
|
|
|
| 23 Mar 2015 04:20 PM |
| @Hibobb Wow, that affect when you scope is amazing! This could be really innovative to Roblox! Thanks for sharing! |
|
|
| Report Abuse |
|
|
|
| 23 Mar 2015 04:20 PM |
| You can also put ForceFields in all of the Characters' parts, as that prevents the joints from breaking in explosions but does not prevent them from taking damage. |
|
|
| Report Abuse |
|
|
|
| 23 Mar 2015 04:27 PM |
@weeshoopdawhoop @JarodOfOrbiter @JimmyChance Thank you guys so much! I'll try these things out! Heres a link to the game so far: http://www.roblox.com/Explosive-Roblox-Spleef-Not-done-v0-01-place?id=228994530
Its not made for playing yet but you can try it out if you wish! =D |
|
|
| Report Abuse |
|
|