Advertisement
Dogmen

Untitled

Nov 20th, 2018
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local MurderMysteryGUI = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local btools = Instance.new("TextButton")
  7. local unlockws = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. --Properties:
  11. MurderMysteryGUI.Name = "MurderMysteryGUI"
  12. MurderMysteryGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. Frame.Parent = MurderMysteryGUI
  15. Frame.Active = true
  16. Frame.BackgroundColor3 = Color3.new(0.0784314, 0.117647, 0.0784314)
  17. Frame.BorderSizePixel = 8
  18. Frame.Position = UDim2.new(0.428861797, 0, 0.415950924, 0)
  19. Frame.Selectable = true
  20. Frame.Size = UDim2.new(0, 209, 0, 137)
  21. Frame.Draggable = true
  22.  
  23. btools.Name = "btools"
  24. btools.Parent = Frame
  25. btools.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  26. btools.BorderSizePixel = 5
  27. btools.Position = UDim2.new(-7.4505806e-09, 0, 0, 0)
  28. btools.Size = UDim2.new(0, 140, 0, 28)
  29. btools.Font = Enum.Font.Code
  30. btools.Text = "Btools"
  31. btools.TextColor3 = Color3.new(1, 1, 1)
  32. btools.TextScaled = true
  33. btools.TextSize = 14
  34. btools.TextWrapped = true
  35.  
  36. unlockws.Name = "unlockws"
  37. unlockws.Parent = Frame
  38. unlockws.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  39. unlockws.BorderSizePixel = 5
  40. unlockws.Position = UDim2.new(-7.4505806e-09, 0, 0.335766435, 0)
  41. unlockws.Size = UDim2.new(0, 140, 0, 28)
  42. unlockws.Font = Enum.Font.Code
  43. unlockws.Text = "Unlock WorkSpace"
  44. unlockws.TextColor3 = Color3.new(1, 1, 1)
  45. unlockws.TextScaled = true
  46. unlockws.TextSize = 14
  47. unlockws.TextWrapped = true
  48.  
  49. TextLabel.Parent = Frame
  50. TextLabel.BackgroundColor3 = Color3.new(0.0588235, 0.137255, 0.0588235)
  51. TextLabel.BorderSizePixel = 8
  52. TextLabel.Position = UDim2.new(0, 0, 0.773722649, 0)
  53. TextLabel.Size = UDim2.new(0, 209, 0, 31)
  54. TextLabel.Font = Enum.Font.Code
  55. TextLabel.Text = "Made by man#7374"
  56. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  57. TextLabel.TextScaled = true
  58. TextLabel.TextSize = 14
  59. TextLabel.TextWrapped = true
  60.  
  61. TextButton.Parent = Frame
  62. TextButton.BackgroundColor3 = Color3.new(0.0627451, 0.0784314, 0.0823529)
  63. TextButton.BorderSizePixel = 8
  64. TextButton.Position = UDim2.new(0.799043059, 0, 0, 0)
  65. TextButton.Size = UDim2.new(0, 42, 0, 37)
  66. TextButton.Font = Enum.Font.Code
  67. TextButton.Text = "X"
  68. TextButton.TextColor3 = Color3.new(1, 1, 1)
  69. TextButton.TextScaled = true
  70. TextButton.TextSize = 14
  71. TextButton.TextWrapped = true
  72. -- Scripts:
  73.  
  74. TextButton.MouseButton1Click:connect(function()
  75. game.LocalPlayer.PlayerGui.MurderMysteryGUI:Remove()
  76. end)
  77.  
  78. btools.MouseButton1Click:connect(function()
  79. game.StarterGui:SetCoreGuiEnabled(2, true) -- enables backpack
  80.  
  81. for a = 1, 4 do -- gives btools
  82.  
  83. local HopperBin = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  84. HopperBin.BinType = a
  85.  
  86. end
  87. end)
  88. unlockws.MouseButton1Click:connect(function()
  89. function l(a)
  90. for n,o in pairs(a:GetChildren())do
  91. if(o:IsA("BasePart"))then o.Locked = false end
  92. l(o)
  93. end
  94. end
  95.  
  96. l(workspace)
  97. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement