|
| 01 Apr 2015 03:21 PM |
| I dont know how to do this if you need to see what my script is just ask but how do you insert a flame effect into your script? Its suppose to be when you touch them the flame effect is added this is for my tag game |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 02 Apr 2015 12:08 AM |
| So do you want the flames to b on your character, like if you step on a block flames appear on your character? |
|
|
| Report Abuse |
|
|
|
| 02 Apr 2015 12:09 AM |
| well its a tag script im trying to figure out when you get tagged the flame effect is added into the torso im a terrible scripter |
|
|
| Report Abuse |
|
|
|
| 02 Apr 2015 12:12 AM |
Assuming you mean tagged as in hit by a projectile,
make the script check if the part hit by the projectile has a humanoid if it is, create a flame effect inside of it's torso
✗ ʙᴀᴢɪɴɢᴀ |
|
|
| Report Abuse |
|
|
| |
|
|
| 02 Apr 2015 12:15 AM |
local humanoid = player.Character:findFirstChild("Humanoid") if humanoid ~= nil then humanoid.WalkSpeed = 16 humanoid:TakeDamage(humanoid.MaxHealth / 0.1) (i need the flame effect here) |
|
|
| Report Abuse |
|
|
|
| 02 Apr 2015 12:23 AM |
you can do that yet you don't know how to call Instance.new()
Septamology - R$0 - Tx17,864 |
|
|
| Report Abuse |
|
|
|
| 02 Apr 2015 12:26 AM |
Instance.new('Fire',player.Character.WHATLIMB)
I am hamburgler man. Running over hamburgers with my van. If I miss it first, I will eat it in reverse! |
|
|
| Report Abuse |
|
|
|
| 02 Apr 2015 12:27 AM |
| thank you newchicken i dislike going to youtube watching videos back to back to find how to do it again |
|
|
| Report Abuse |
|
|
|
| 02 Apr 2015 12:29 AM |
function OnTouched(hit) local humanoid = hit.Parent:FindFirstChild("Humanoid") if humanoid ~= nil then humanoid.WalkSpeed = 16 humanoid:TakeDamage(humanoid.MaxHealth/0.1) Instance.new('Fire',hit) end script.Parent.Touched:connect(OnTouched)
I am hamburgler man. Running over hamburgers with my van. If I miss it first, I will eat it in reverse! |
|
|
| Report Abuse |
|
|