Advertisement
MindOfPlayer

keycard finder

Jul 6th, 2020
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2.     Title = "KeyCard Finder";
  3.     Text = "Looking For Dropped KeyCards...";
  4.     Duration = 1;
  5. })
  6.    
  7.     local Remote = game.Workspace.Remote['ItemHandler']
  8.  
  9. local Arguments = {
  10.         [1] = Workspace.Prison_ITEMS.single:WaitForChild("Key card").ITEMPICKUP
  11. }
  12. game.StarterGui:SetCore("SendNotification", {
  13.     Title = "KeyCard Finder";
  14.     Text = "KeyCard Found!";
  15.     Duration = 1;
  16. })
  17. Remote:InvokeServer(unpack(Arguments))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement