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

why does my game keep crashing when i play this script?

Asked by 5 years ago

so ive been working on this script that when a key is pressed it fires some functions to open a aura type thing around the player and it checks the magnitude around the player for other players. if a player is in certain distance from the local player it fires a function to damage them. but when i test or play the game and test it with a alt account eh game crashes. heres the script:

01local Players = game:GetService("Players")
02local Player = Players.LocalPlayer
03local Char = Player.Character or Player.CharacterAdded:wait()
04local db = true
05local onn = false
06 
07local Distance = 15
08 
09 
10game:GetService("UserInputService").InputBegan:Connect(function(input, event)
11    if input.KeyCode == Enum.KeyCode.Z and db then
12        db = false
13        if onn == false then
14            onn = true
15        elseif onn == true then
View all 63 lines...

the first UserInputService function is for players and the second is for a npc in workspace i used for testing. i cant even get which line im crashing on because when the game crashes i have no choice but to leave. anyway i hope somone can help me, and thank you!

1 answer

Log in to vote
1
Answered by 5 years ago
Edited 5 years ago

it's likely the repeat, as it only waits under certain conditions, and not always. for example,

01repeat
02                    if HRP and Player:DistanceFromCharacter(HRP.CFrame.Position) < Distance then
03                        local MYHRP = script.Parent.HumanoidRootPart.CFrame.Position
04                        local mag = (HRP - MYHRP).Magnitude
05                        if mag < Distance then
06                            script.Parent.FireKillingIntent:FireServer(HRP)
07                            wait(0.5)
08                        end
09                        print("In Range")
10                    end
11                until onn == false

only waits under multiple if statements, meaning if mag was greater than distance, it would run without waiting, causing the script to crash.This happens on the other repeat as well.

0
Thank you! i diddnt realise that but thanks! ahsan666666666666 264 — 5y
0
np! Noonekirby 162 — 5y
Ad

Answer this question