Advertisement
d2hh82h3wkf

Untitled

Feb 22nd, 2020
4,219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local w = library:CreateWindow("Break In")
  3.  
  4. local b = w:Button("Unlock Safe", function()
  5. if workspace:findFirstChild("CodeNote") then
  6. game.ReplicatedStorage.RemoteEvents.Safe:FireServer(workspace.CodeNote.SurfaceGui.TextLabel.Text)
  7. end
  8. end)
  9.  
  10. w:Dropdown("Items", {
  11. location = _G;
  12. flag = "items";
  13. list = {
  14. "Pizza3";
  15. "BloxyCola";
  16. "Cookie";
  17. "Apple";
  18. "Chips";
  19. "TeddyBloxpin";
  20. "MedKit";
  21. "Cure";
  22. "Bat";
  23. }
  24. })
  25.  
  26.  
  27. local b = w:Button("Spawn Item", function()
  28. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer(_G.items)
  29. end)
  30.  
  31.  
  32. local t = w:Toggle("Invisible", {flag = "toggle1"})
  33. while wait() do
  34. if w.flags.toggle1 == true then
  35. game.ReplicatedStorage.RemoteEvents.MakeStealth:FireServer(13)
  36. wait(0.5)
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement