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

[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:

01local Click = script.Parent.ClickDetector
02 
03local default = ""
04local defaultAv = "Available Room"
05 
06local ImageLabel = script.Parent.Parent.Gold3.SurfaceGui.ImageLabel
07 
08local text2 = script.Parent.Parent.Gold.SurfaceGui.TextLabel
09 
10local UserValue1 = script.Parent.Parent.WhoID
11local UserValue2 = script.Parent.Parent.WhoUser
12 
13Click.MouseClick:Connect(function(playerWhoClicked)
14    UserValue2.Value = playerWhoClicked.Name
15    Click.MaxActivationDistance = 0
View all 26 lines...

Basically, tell me how to make the "game.Players.PlayerRemoving" local.

Thanks!

0
Also, this is a script in the Workspace. CoolBlueJay000 48 — 4y

2 answers

Log in to vote
0
Answered by
M9F 94
4 years ago

I'm currently busy scripting something but I'll try to help you when I'm done!

0
I'm going to add you M9F 94 — 4y
0
I'm going to add you M9F 94 — 4y
0
It's alright, I figured out how to make it local CoolBlueJay000 48 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

I figured out how to make it local

Answer this question