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

.Touched doesn't work, is it because of FilteringEnabled?

Asked by 6 years ago

Works fine in studio, but fails in an actual server. No errors in output, and even debugging failed to show the problem, as "1" never prints, and it's literally the first line after the .touched function. I might be dumb, but I have absolutely no idea why this isn't working. FilteringEnabled is on if it matters, and this script is simply in a normal part inside of workspace.

01local debounce = false
02 
03script.Parent.Touched:connect(function(player)
04    print("1")
05    if debounce == false then
06        print("2")
07        debounce = true
08        game.ReplicatedStorage.events.sndGiggle:FireClient(player)
09        game.Workspace.game.assets.location1:Destroy()
10        game.ReplicatedStorage.assets.location2:Clone().Parent = game.Workspace.game.assets
11        game.ReplicatedStorage.assets.location2a:Clone().Parent = game.Workspace.game.assets
12        game.Workspace.events.metaldoor1:Destroy()
13        game.Workspace.events.lights1:Destroy()
14        game.Workspace.events.trigger.location1:Destroy()
15    end
16end)

Why, just why.

0
Are you checking the Client or the Server Console? yyyyyy09 246 — 6y
0
Is it a LocalScript? PreciseLogic 271 — 6y

1 answer

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

Not 100% sure, don't take my word, but you might not be able to get player from onTouch directly. Instead try this...

1script.Parent.Touched:connect(function(hit)
2    if hit.Parent:FindFirstChild("Humanoid") then
3        local plr = workspace[hit.Parent.Name]
4        local player = game.Players:GetPlayerFromCharacter(plr)
5        --Stuff here
6    end
7end)
0
That's true, the Touched event only returns the part that collided. jackfrost178 242 — 6y
0
Ok, thank you. I'll try tomorrow and let you know if it worked ZeMeNbUiLdEr 104 — 6y
0
Worked like a charm. Thank you very much! ZeMeNbUiLdEr 104 — 6y
0
No problem! I am actually surprised it worked. One of the first questions I have ever answered :D BunnyFilms1 297 — 6y
Ad

Answer this question