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

This isn't working! Help?

Asked by
Resnex 60
11 years ago

I'm trying to make this shield that defends against bullets and paintballs, but it isn't working!

01function onTouched(part)
02    if part.Name == "Bullet" or "Paintball" then
03        Shield = Instance.New("Part")
04        Shield.Size = Vector3.new(.2,.2,.2)
05        Shield.CanCollide = false
06        Shield.Parent = game.Workspace
07        Shield.BrickColor = ("Really red")
08        Shield.Position = script.Parent
09 
10        local mesher = Instance.new("BlockMesh")
11        mesher.Parent = Shield
12        mesher.Scale = Vector3.new(0.2, 0.2, (script.Parent.Position - onTouched(part).Position).magnitude)
13 
14        explosion = Instance.new("Explosion")
15        explosion.Parent = game.Workspace
View all 21 lines...
0
Please specify how this isn't working, we don't know what you want this to do and what it's doing instead. adark 5487 — 11y

1 answer

Log in to vote
-3
Answered by 11 years ago

Isn't the method at the end of your script wrong? part:remove() isn't a method.

1part:Remove()

is a method, other than that I don't know how to help.

1
Line 12, it seems like you're calling the OnTouched again, within a Vector3? You already have the 'part' defined. Just say part.Position, not onTouched(part).Position hiccup111 231 — 11y
Ad

Answer this question