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

Damage range with a part? [CLOSED]

Asked by
hudzell 238 Moderation Voter
11 years ago

I'm trying to make a part appear, and damage all players (except the client player) within the light's radius (inside the part, which is 16 by 16 by 16 inside a 16 range light). The entire script works, but the damage part is the part I'm trying to figure out. Sometimes it damages them, sometimes it doesn't. Please help. Oh, and, here's the script and the layout is here.

01local tool = script.Parent
02local handle = tool.Handle
03local light = handle.PointLight
04local player = game.Players.LocalPlayer
05local Enabled = true
06local debounce = false
07 
08function activated()
09    if Enabled == true then
10        Enabled = false
11        wait()
12        local col = game.Lighting.Storage.collide:Clone()
13        col.Parent = tool
14        col.Position = handle.Position
15        col.Anchored = false
View all 39 lines...

1 answer

Log in to vote
1
Answered by
Bebee2 195
11 years ago

I cannot be 100% sure this would work but

At line 20, try using

1col.LocalSimulationTouched:connect(function(hit)

since this is a localscript.

That is sadly your best hope with a touched bullet in a localscript unless you use Raycast.

0
Damn, didn't work. Do you know how to use Raycasting? Cause I sure as hell don't. x3 hudzell 238 — 11y
0
Search up Raycasting the how to make a Raycasting laser gun on wiki.roblox.com Bebee2 195 — 11y
0
I looked at that page, but I am trying to make area/splash damage, like an AoE attack in World of Warcraft, not just a laser gun. hudzell 238 — 11y
Ad

Answer this question