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

So i created this Damage display script, but it works only once and after that time it errors?

Asked by 4 years ago

The Damage Display script-

01local isUsing = false
02local tool = script.Parent.Parent
03local Blade1 = script.Parent.Parent.Union
04local Blade2 = script.Parent.Parent.Union2
05local Blades = Blade1 or Blade2
06local DamageDis = script.Parent.Parent.Instances.DamageDisplay:Clone()
07local Damage = script.Parent.Parent.Values.Damage
08local DamageText = script.Parent.Parent.Instances.DamageDisplay.Damage:Clone()
09local CanDamage = script.Parent.Parent.Values.CanDamage
10local Attachment = Instance.new("Attachment")
11 
12tool.Activated:Connect(function()
13isUsing = true
14wait(2)
15isUsing = false
View all 31 lines...

And the error is - The Parent property of Attachment is locked, current parent: NULL, new parent HumanoidRootPart

1 answer

Log in to vote
0
Answered by
Sparks 534 Moderation Voter
4 years ago

You only created one instance of an Attachment object. On line 29, you destroy that object the first time .Touched fires, and therefore there are no more attachments to destroy (hence the NULL error). To fix this, create a new attachment whenever the .Touched event fires.

01local isUsing = false
02local tool = script.Parent.Parent
03local Blade1 = script.Parent.Parent.Union
04local Blade2 = script.Parent.Parent.Union2
05local Blades = Blade1 or Blade2
06local DamageDis = script.Parent.Parent.Instances.DamageDisplay:Clone()
07local Damage = script.Parent.Parent.Values.Damage
08local DamageText = script.Parent.Parent.Instances.DamageDisplay.Damage:Clone()
09local CanDamage = script.Parent.Parent.Values.CanDamage
10 
11tool.Activated:Connect(function()
12isUsing = true
13wait(2)
14isUsing = false
15end)
View all 31 lines...
0
It still errors the same thing as before.. XxGhostBoy_HDxX 38 — 4y
Ad

Answer this question