Glexteon

Untitled

Sep 20th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. -- https://www.roblox.com/games/133288503/SCP-Site-61-ROLEPLAY#
  2.  
  3. local GUI = Instance.new("ScreenGui")
  4. local Button2 = Instance.new("TextButton")
  5. local Button = Instance.new("TextButton")
  6. local Text = Instance.new("TextLabel")
  7.  
  8. GUI.Name = "GUI"
  9. GUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10.  
  11. Button2.Name = "Button2"
  12. Button2.Parent = GUI
  13. Button2.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  14. Button2.BackgroundTransparency = 0.5
  15. Button2.Position = UDim2.new(0.00484848488, 0, 0.963144958, 0)
  16. Button2.Size = UDim2.new(0, 234, 0, 23)
  17. Button2.Font = Enum.Font.SciFi
  18. Button2.Text = "Play."
  19. Button2.TextColor3 = Color3.new(1, 1, 1)
  20. Button2.TextSize = 18
  21. Button2.TextWrapped = true
  22.  
  23. Button.Name = "Button"
  24. Button.Parent = GUI
  25. Button.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  26. Button.BackgroundTransparency = 0.5
  27. Button.Position = UDim2.new(0.13, 0, 0.963144958, 0)
  28. Button.Size = UDim2.new(0, 46, 0, 23)
  29. Button.Font = Enum.Font.SciFi
  30. Button.Text = "Stop."
  31. Button.TextColor3 = Color3.new(1, 1, 1)
  32. Button.TextSize = 18
  33.  
  34. Text.Parent = GUI
  35. Text.BackgroundColor3 = Color3.new(0.152941, 0.152941, 0.152941)
  36. Text.BackgroundTransparency = 0.5
  37. Text.Position = UDim2.new(0.00484848488, 0, 0.935, 0)
  38. Text.Size = UDim2.new(0, 200, 0, 23)
  39. Text.Font = Enum.Font.SciFi
  40. Text.Text = "[C] Glexteon / Loud Siren."
  41. Text.TextColor3 = Color3.new(1, 1, 1)
  42. Text.TextSize = 14
  43. Text.TextWrapped = true
  44. --Script'z.
  45. Button.MouseButton1Down:connect(function()
  46. Game.Workspace.Sounds.Sound666: Stop()
  47. end)
  48.  
  49. Button2.MouseButton1Down:connect(function()
  50. Game.Workspace.Sounds.Sound666: Play()
  51. end)
Add Comment
Please, Sign In to add comment