KiilmYk

script

Oct 10th, 2024 (edited)
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local StarterGui = game:GetService("StarterGui")
  3. local player = Players.LocalPlayer
  4.  
  5. player.Chatted:Connect(function(msg)
  6. if msg:lower() == "/ui" then
  7. -- Send notification to the player
  8. StarterGui:SetCore("SendNotification", {
  9. Title = "Notification",
  10. Text = "Ui made by Kiilm",
  11. Duration = 5
  12. })
  13. wait(3)
  14. -- Send notification to the player
  15. StarterGui:SetCore("SendNotification", {
  16. Title = "Notification",
  17. Text = "Loading Script...",
  18. Duration = 5
  19. })
  20.  
  21. -- Delay for 5 seconds before kicking the player
  22. wait(5)
  23. player:Kick("You've been banned permanently from this experience.\nReason: Exploiting.")
  24. end
  25. end)
  26.  
Advertisement
Add Comment
Please, Sign In to add comment