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

Touched function plays multiple times, is it possible to make it play only once?

Asked by 6 years ago

I have a script here:

It plays like, 50 times when touching it.

Can it be done without using Region3 or Rays?

01part.Teleport1Part.Touched:connect(function(hit)
02    if hit.Parent:FindFirstChild("Humanoid") then
03        local thing = game.Players.LocalPlayer.PlayerGui.ScreenGui.TeleportBlackScreen
04    thing.Visible = true
05        repeat
06            wait(0.1)
07            thing.BackgroundTransparency = thing.BackgroundTransparency - 0.1
08        until thing.BackgroundTransparency <= 0
09            hit.Parent.Head.CFrame = part.Teleport1Position.CFrame
10        repeat
11            wait(1)
12            thing.BackgroundTransparency = thing.BackgroundTransparency + 0.1
13        until thing.BackgroundTransparency >= 1
14        thing.Visible = false
15    end
16    end
17end)

2 answers

Log in to vote
0
Answered by
bossay6 62
6 years ago

you can use a debounce.

01local deb = false
02part.Teleport1Part.Touched:connect(function(hit)
03if deb == false then
04    deb = true
05    if hit.Parent:FindFirstChild("Humanoid") then
06        local thing = game.Players.LocalPlayer.PlayerGui.ScreenGui.TeleportBlackScreen
07    thing.Visible = true
08        repeat
09            wait(0.1)
10            thing.BackgroundTransparency = thing.BackgroundTransparency - 0.1
11        until thing.BackgroundTransparency <= 0
12            hit.Parent.Head.CFrame = part.Teleport1Position.CFrame
13        repeat
14            wait(1)
15            thing.BackgroundTransparency = thing.BackgroundTransparency + 0.1
View all 23 lines...

if this doesn't work, then tell me

0
This does indeed work, thank you a lot! I never had a clue such a thing was possible. Not only will this fix my problem, it will also fix a broken huge part of my game. sebse456 13 — 6y
0
no problem! bossay6 62 — 6y
Ad
Log in to vote
3
Answered by
ben0h555 417 Moderation Voter
6 years ago
Edited 6 years ago

Use a debounce value, a value to make sure it doesn't spam the function when the function is playing.

01debounce = 0
02part.Teleport1Part.Touched:connect(function(hit)
03    if hit.Parent:FindFirstChild("Humanoid") then
04    debounce = 1
05        local thing = game.Players.LocalPlayer.PlayerGui.ScreenGui.TeleportBlackScreen
06    thing.Visible = true
07        repeat
08            wait(0.1)
09            thing.BackgroundTransparency = thing.BackgroundTransparency - 0.1
10        until thing.BackgroundTransparency <= 0
11            hit.Parent.Head.CFrame = part.Teleport1Position.CFrame
12        repeat
13            wait(1)
14            thing.BackgroundTransparency = thing.BackgroundTransparency + 0.1
15        until thing.BackgroundTransparency >= 1
16        thing.Visible = false
17    debounce = 0
18    end
19    end
20end)

This should slow the rate down, and also make sure it doesnt happen when it is already playing, make sure to use debounce values in functions like this.

If you need it to be slower, you add a wait() before it turns debounce to 0, increase the wait() the less you want it to fire.

0
It has made a slight change, but it still plays at least 20 times. sebse456 13 — 6y
0
add a wait() before it turns debounce to 0, that will slow it down. ben0h555 417 — 6y
0
Doesn't quite make a difference sebse456 13 — 6y

Answer this question