[SOLVED] How do I make PlayerRemoving local?
Asked by
4 years ago Edited 4 years ago
Okay so, I'm trying to make a claiming door, but I need it to be so that when the player THAT OWNS the door gets their room wiped so that someone else can claim it. But I don't know how to make this local because whenever someone leaves it makes all of the rooms available. Even though I want it to be for that player only who left.
Here's my code:
01 | local Click = script.Parent.ClickDetector |
04 | local defaultAv = "Available Room" |
06 | local ImageLabel = script.Parent.Parent.Gold 3. SurfaceGui.ImageLabel |
08 | local text 2 = script.Parent.Parent.Gold.SurfaceGui.TextLabel |
10 | local UserValue 1 = script.Parent.Parent.WhoID |
11 | local UserValue 2 = script.Parent.Parent.WhoUser |
13 | Click.MouseClick:Connect( function (playerWhoClicked) |
14 | UserValue 2. Value = playerWhoClicked.Name |
15 | Click.MaxActivationDistance = 0 |
16 | UserValue 1. Value = playerWhoClicked.UserId |
17 | text 2. Text = playerWhoClicked.Name.. "'s Room" |
20 | game.Players.PlayerRemoving:Connect( function () |
22 | UserValue 1. Value = default |
23 | UserValue 2. Value = default |
24 | text 2. Text = defaultAv |
25 | Click.MaxActivationDistance = 10 |
Basically, tell me how to make the "game.Players.PlayerRemoving" local.
Thanks!