Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Trying to make this not inflict self damage but having trouble, advise? [closed]

Asked by
Songist 49
6 years ago
Edited 6 years ago

I'm experimenting with some ROBLOX-Made gear, trying to see how different attributes, like force acting on an arrow, can be modified through simple NumValues. Had some problems in other areas though the I figure would be good to understand if anyone can help

001local Tool = script.Parent
002local Remote = Tool:WaitForChild("Remote")
003local Handle = Tool:WaitForChild("Handle")
004 
005local FriendlyFire = false
006 
007local AttackDamage = 35
008local AttackAble = true
009local AttackRestTime = 1
010 
011local ProjectileSpeed = 50
012 
013local MousePoint = Vector3.new()
014 
015local Arrows = {}
View all 156 lines...

I bolded the main areas I'm focusing on. I've tried a few things, none of which are working, and a lot of this is possibly due to my difficulty understanding the first block of bolded code. It seems as though this provides a series of either true or false, but how does the code aggrigate these responses in the next part under checkteams()? It needs to be true to fire the later bolded code, but I'm just a bit confused as to how it got here. Thank you!

edit: Ahh bolding doesn't work here, lemme get the line numbers

ok, 42 - 61, and 128 - 135

Closed as Not Constructive by Goulstem

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
1
Answered by 6 years ago

You can simply add another statement to avoid self-damage, this simply just doesn't deal damage or tags if the humanoid detected is your own, I didn't go through much of the code but hope this is what you need.

1if checkTeams(human) and human ~= Player.Character.Humanoid then
2    tagHuman(human)
3    human:TakeDamage(AttackDamage)
4end
Ad