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

How can i make a script that skip error and keep working ?

Asked by 5 years ago

I have a script that teleport player back to spawn (using loadcharacter) and reward 100 cash when a player touch a part This is my script:

01local Debounce = false
02 
03script.Parent.Touched:connect(function(hit)
04    if Debounce == false then
05    Debounce = true
06    if hit.Parent.Humanoid ~=nil then
07        print("touched")
08        local player = game.Players:GetPlayerFromCharacter(hit.Parent)
09        player.leaderstats.Cash.Value = player.leaderstats.Cash.Value + 100
10        player:LoadCharacter()
11        workspace.MapChanger.Waittime.Value = workspace.MapChanger.Waittime.Value /2   
12        wait(5)
13        Debounce = false   
14        end
15    end
16end)

sometime when a player touch it, it give me an error saying Humanoid is not a valid player of Accessory then the script stop working... How can i prevent that?

Sorry for my bad english :(

2 answers

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

To make script skip error and keep working, we use pcall(). For example:

1local Succeed, ErrorMessage = pcall(function()
2    write("I'm running in pcall() :D") --this will return error because the function have to be print() not write()
3end)
4 
5if Succeed then
6    print("Nothing wrong :D")
7else
8    print("It error :(", ErrorMessage)
9end

Succeed is a boolean value, if there is no error, it will return true or it will return false if there is error. ErrorMessage is the error message(duh...) that the script return if there is any error.
pcall() is only use for can't handle error like Http request error, Gamepass purchase,... but that is another thing.
Using pcall() too much is not a good habit, it better to fix the error by your self than skip it.

For more information about pcall(), click here.

*Note: I don't have the link to pcall() document so... Find it your self :)

0
My script now print red color error line (without "It error :(") with a green line left to it.....Is that normal? Nguyenlegiahung 1091 — 5y
0
If that happen then you do it right. The green line left to it show is that line print by client or server(green mean server, blue mean client), and the red color error line is the ErrorMessage that you just print. Block_manvn 395 — 5y
0
why it doesn't print without it error :( while i told it to? Nguyenlegiahung 1091 — 5y
Ad
Log in to vote
1
Answered by
RAFA1608 543 Moderation Voter
5 years ago

Hello. First, i will teach you how to check if something exists.

1local hum = hit.Parent:FindFirstChild("Humanoid") --If it finds the humanoid, returns the humanoid, if it doesnt, returns nil
2if hum then
3    Hum exists!
4end

Now, pcalls.

1local worked, errormessage = pcall(function() --pcalls are functions that returns if it worked and the error message.
2    pppprint()
3end)
4if worked == false then
5    print(errormessage) --would print that pppprint() isnt a existant function or something. yeah.
6end

Hope that helped!

0
personally I find that this answer is better, because it explains FindFirstChild FlabbyBoiii 81 — 5y
0
i'ma upvote FlabbyBoiii 81 — 5y

Answer this question