This is for my new RPG game
In an infinite loop check for player distance from the part, since PointLight spreads in all directions
1 | while wait() do |
2 | for k,v in next , game.Players:GetPlayers() do |
3 | if v:DistanceFromCharacter(script.Parent.Position) < = script.Parent.PointLight.Range then |
4 | v.Character.Humanoid.Health = 0 |
5 | end |
6 | end |
7 | end |
Hi, FancyClone! Try using functions, to be exact, the onTouched function. Here is your syntax:
1 | --Put the follow script into the part the pointLight is in, and edit to your choice. |
2 |
3 | function onTouched(hit) |
4 | --Here is your part. Try to see if you can find how to delete the part your player touches, and --bring up a GUI. I am not giving you the full answer as this website is not for requesting, but for help. |
5 | end |
6 | script.Parent.Touched:connect(onTouched) |
Closed as Not Constructive by Sublimus, Dummiez, and Articulating
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?