I'm using "enabled" instead of debounce. The problem here is that the weapons are spawning two or three at a time into the player's backpack. How do I fix this?
01 | --Aceta |
02 | local venom = game.Lighting.Venomshank |
03 | local dark = game.Lighting.Darkheart |
04 | local katana = game.Lighting.BlueKatana |
05 | local sword = game.Lighting.Sword |
06 | local enabled = false |
07 |
08 | function onTouch(hit) |
09 | if hit.Parent and hit.Parent:FindFirstChild( 'Humanoid' ) and enabled = = false then |
10 | enabled = true |
11 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
12 | local character = hit.Parent |
13 | character.Torso.CFrame = CFrame.new(Workspace.teleportation.Position+Vector 3. new(math.random( 1 , 10 ),math.random( 1 , 10 ),math.random( 1 , 10 ))) |
14 | local Sword = sword:Clone() |
15 | Sword.Parent = player.Backpack |
Personally, I wouldn't use debounce for this. If multiple people touch the block at once, only one will get the weapons because debounce is activated, and the onTouch only registers right when they touch it, not the whole time until they leave.
That being said, your problem is that sometimes onTouch registers a couple times when the parts come in contact. What I would do is check the Backpack to see if they have the weapons, and if they don't the give them.
What ipiano said regarding this specific problem is dead on. However, here is an explanation on debounces:
A debounce should be a boolean
(meaning it can either be true
or false
but nothing else). You can choose whether to default this boolean
to either true
or false
, but keep in mind what you've chosen!
When a certain function is called, you'd check if your debounce is NOT the default value. If it isn't, you just return right out of your function - it shouldn't do anything right now! As soon as you've checked your debounce, you should set your debounce to the opposite of it's default value, and then, at the last line of a function (or right before a return), you should set it back.
An example:
01 | local debounce = false --Create a debounce with a default value of false |
02 |
03 | function checkDebounce() --Create a function |
04 | if debounce then return end --Is the debounce currently true? Okay, then just stop this function dead in its tracks! |
05 | debounce = true --The debounce wasn't true yet, but now it is. We don't want to overlap! |
06 | wait( 2 ) --Replace this with everything your function does |
07 | debounce = false --Okay, reset the debounce! |
08 | end |
09 |
10 | script.Parent.Touched:connect( function (hit) |
11 | checkDebounce() |
12 | end ) |
I've already tried checking if the tool already exists in the backpack, but it keeps erroring. After that I went to booleans.