Trying to make this not inflict self damage but having trouble, advise? [closed]
Asked by
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
001 | local Tool = script.Parent |
002 | local Remote = Tool:WaitForChild( "Remote" ) |
003 | local Handle = Tool:WaitForChild( "Handle" ) |
005 | local FriendlyFire = false |
007 | local AttackDamage = 35 |
008 | local AttackAble = true |
009 | local AttackRestTime = 1 |
011 | local ProjectileSpeed = 50 |
013 | local MousePoint = Vector 3. new() |
019 | local char = Tool.Parent |
020 | return game:GetService( "Players" ):GetPlayerFromCharacter(char) |
024 | function contains(t, v) |
025 | for _, val in pairs (t) do |
034 | function tagHuman(human) |
035 | local tag = Instance.new( "ObjectValue" ) |
036 | tag.Value = getPlayer() |
039 | game:GetService( "Debris" ):AddItem(tag) |
043 | function sameTeam(otherHuman) |
044 | local player = getPlayer() |
045 | local otherPlayer = game:GetService( "Players" ):GetPlayerFromCharacter(otherHuman.Parent) |
046 | if player and otherPlayer then |
047 | if player = = otherPlayer then |
050 | if otherPlayer.Neutral then |
053 | return player.TeamColor = = otherPlayer.TeamColor |
059 | function checkTeams(otherHuman) |
060 | return not (sameTeam(otherHuman) and not FriendlyFire) |
064 | local arrow = Instance.new( "Part" ) |
065 | arrow.FormFactor = "Custom" |
066 | arrow.Size = Vector 3. new( 0.2 , 0.4 , 3 ) |
067 | arrow.TopSurface = "Smooth" |
068 | arrow.BottomSurface = "Smooth" |
069 | arrow.CanCollide = false |
071 | local mesh = Instance.new( "SpecialMesh" ) |
072 | mesh.MeshType = "FileMesh" |
075 | mesh.Scale = Vector 3. new( 0.6 , 0.6 , 0.6 ) |
078 | local lift = Instance.new( "BodyForce" ) |
079 | lift.force = Vector 3. new( 0 , 196.2 , 0 ) * arrow:GetMass() * 0.9 |
082 | local hit = Handle.Hit:Clone() |
084 | hit.TimePosition = 0.2 |
086 | local projectile = Tool.Projectile:Clone() |
087 | projectile.Disabled = false |
088 | projectile.Parent = arrow |
094 | if not AttackAble then return end |
097 | delay(AttackRestTime, function () |
101 | Remote:FireClient(getPlayer(), "PlayAnimation" , "BowFire" ) |
105 | Handle.Shot.Pitch = math.random( 90 , 110 )/ 100 |
108 | local arrow = getArrow() |
109 | arrow.CFrame = CFrame.new(Handle.Position, MousePoint) |
110 | arrow.Velocity = arrow.CFrame.lookVector * ProjectileSpeed |
113 | c = arrow.Touched:connect( function (part) |
114 | if part:IsDescendantOf(Tool.Parent) then return end |
115 | if contains(Arrows, part) then return end |
118 | arrow.Projectile:Destroy() |
120 | local w = Instance.new( "Weld" ) |
123 | w.C 0 = part.CFrame:toObjectSpace(arrow.CFrame) |
128 | ** if part.Parent and part.Parent:FindFirstChild( "Humanoid" ) then |
129 | local human = part.Parent.Humanoid |
130 | if checkTeams(human) then |
132 | human:TakeDamage(AttackDamage) |
137 | table.insert(Arrows, arrow) |
138 | arrow.Parent = workspace |
139 | game:GetService( "Debris" ):AddItem(arrow, 10 ) |
142 | function onMouseUpdate(targetPoint) |
143 | MousePoint = targetPoint |
146 | function onRemote(player, func, ...) |
147 | if player ~ = getPlayer() then return end |
149 | if func = = "LeftDown" then |
151 | elseif func = = "UpdateMouse" then |
156 | Remote.OnServerEvent:connect(onRemote) |
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