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

How do I make a script that kicks the player once they click a button on StarterGui?

Asked by 4 years ago
Edited 4 years ago
local button = script.Parent
button.Activated:Connect(function()
game.Players.LocalPlayer:Kick("Cancled")
0
MouseButton1Click is a ScriptSignal. Signal's can be connected to functions so when they're activated it runs the function. Use function Connect on MouseButton1Click. script.Parent.MouseButton1Click:Connect(function() game.Players.LocalPlayer:Kick("Reason"); end) pidgey 548 — 4y
0
@pidgey I have heaard using activated is better? Is that true Freddan2006YT 88 — 4y

3 answers

Log in to vote
0
Answered by
U_srname 152
4 years ago

Alright. Let's assume that there is a button inside a ScreenGui inside the StarterGui. Inside the button is a LocalScript. This is the LocalScript's code:

local player = game.Players.LocalPlayer
local button = script.Parent

button.MouseButton1Click:Connect(function()
    player:Kick('reason')
end)

Hope this helped!

Ad
Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

umm game:Destroy()??

You should kick the player, not delete the game.

game.Players.LocalPlayer:Kick("Reason")

edit:

what is ".clicked" by the way? here fixed script:

local button = --You're button
button.Activated:Connect(function()
game.Players.LocalPlayer:Kick("Reason")
0
How do I make it once they click the button? AwesomeMrBird -79 — 4y
0
Don't use "if". it's an event that fires when it's clicked you don't need an if statment Freddan2006YT 88 — 4y
0
Don't use mousebuttonclick because it will not work on phones only on computers. Freddan2006YT 88 — 4y
Log in to vote
0
Answered by 4 years ago

Hey, if you want to kick the person who clicked only, then you can use a local script and insert :

local button = game.StarterGui.ScreenGui.Button -- or wherever your button location is

button.MouseButton1Down:Connect(function()
    game.Players.LocalPlayer:Kick("Reason")
end)

0
This won't work. That's not how StarterGui works U_srname 152 — 4y
0
i tried and it worked shanelaw12 64 — 4y

Answer this question