Advertisement
SirKingTheSecond

A Bizarre Day Modded GUI

Apr 9th, 2020
39,401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.08 KB | None | 0 0
  1. -- Made by Afkil#2500
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local gui1 = Instance.new("TextButton")
  7. local gui2 = Instance.new("TextButton")
  8. local gui3 = Instance.new("TextButton")
  9. local synapse = Instance.new("TextLabel")
  10. local close = Instance.new("TextButton")
  11. local openmain = Instance.new("Frame")
  12. local open = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17.  
  18. main.Name = "main"
  19. main.Parent = ScreenGui
  20. main.BackgroundColor3 = Color3.fromRGB(126, 126, 126)
  21. main.Position = UDim2.new(0.615936279, 0, 0.693208337, 0)
  22. main.Size = UDim2.new(0, 317, 0, 171)
  23. main.Visible = false
  24. main.Active = true
  25. main.Draggable = true
  26.  
  27. title.Name = "title"
  28. title.Parent = main
  29. title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  30. title.Position = UDim2.new(-0.00630914839, 0, 0, 0)
  31. title.Size = UDim2.new(0, 317, 0, 30)
  32. title.Font = Enum.Font.GothamBlack
  33. title.Text = "A Bizarre Day Modded GUI"
  34. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  35. title.TextSize = 14.000
  36.  
  37. gui1.Name = "gui1"
  38. gui1.Parent = main
  39. gui1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. gui1.Position = UDim2.new(0.0283911675, 0, 0.251461983, 0)
  41. gui1.Size = UDim2.new(0, 130, 0, 37)
  42. gui1.Font = Enum.Font.SourceSansSemibold
  43. gui1.Text = "Trolling GUI"
  44. gui1.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. gui1.TextSize = 14.000
  46. gui1.MouseButton1Down:connect(function()
  47. loadstring(game:HttpGet("https://pastebin.com/raw/MthV89FD"))();
  48. end)
  49.  
  50. gui2.Name = "gui2"
  51. gui2.Parent = main
  52. gui2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  53. gui2.Position = UDim2.new(0.558359623, 0, 0.251461983, 0)
  54. gui2.Size = UDim2.new(0, 126, 0, 37)
  55. gui2.Font = Enum.Font.SourceSansSemibold
  56. gui2.Text = "TP Items GUI"
  57. gui2.TextColor3 = Color3.fromRGB(0, 0, 0)
  58. gui2.TextSize = 14.000
  59. gui2.MouseButton1Down:connect(function()
  60. loadstring(game:HttpGet("https://pastebin.com/raw/JjNHBn1i"))();
  61. end)
  62.  
  63. gui3.Name = "gui3"
  64. gui3.Parent = main
  65. gui3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  66. gui3.Position = UDim2.new(0.211356461, 0, 0.608187139, 0)
  67. gui3.Size = UDim2.new(0, 179, 0, 31)
  68. gui3.Font = Enum.Font.SourceSansSemibold
  69. gui3.Text = "Play Audio GUI"
  70. gui3.TextColor3 = Color3.fromRGB(0, 0, 0)
  71. gui3.TextSize = 14.000
  72. gui3.MouseButton1Down:connect(function()
  73. loadstring(game:HttpGet('https://gist.githubusercontent.com/FunTrat0r/10462a3e794f101f5c79e945b413427f/raw/67be88eb6cd84bd36ee081885030efbdc2b21175/bizarre-day.lua',true))()
  74. end)
  75.  
  76. synapse.Name = "synapse"
  77. synapse.Parent = main
  78. synapse.BackgroundColor3 = Color3.fromRGB(126, 126, 126)
  79. synapse.BorderColor3 = Color3.fromRGB(126, 126, 126)
  80. synapse.Position = UDim2.new(0.242902204, 0, 0.836257339, 0)
  81. synapse.Size = UDim2.new(0, 159, 0, 18)
  82. synapse.Font = Enum.Font.SourceSans
  83. synapse.Text = "Audio is Synapse"
  84. synapse.TextColor3 = Color3.fromRGB(255, 255, 255)
  85. synapse.TextSize = 14.000
  86.  
  87. close.Name = "close"
  88. close.Parent = main
  89. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  90. close.Position = UDim2.new(0.854889572, 0, 0, 0)
  91. close.Size = UDim2.new(0, 46, 0, 30)
  92. close.Font = Enum.Font.GothamBlack
  93. close.Text = "X"
  94. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  95. close.TextScaled = true
  96. close.TextSize = 14.000
  97. close.TextWrapped = true
  98. close.MouseButton1Down:connect(function()
  99. main.Visible = false
  100. openmain.Visible = true
  101. end)
  102.  
  103. openmain.Name = "openmain"
  104. openmain.Parent = ScreenGui
  105. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  106. openmain.Position = UDim2.new(0, 0, 0.45433256, 0)
  107. openmain.Size = UDim2.new(0, 139, 0, 24)
  108. openmain.Active = true
  109.  
  110. open.Name = "open"
  111. open.Parent = openmain
  112. open.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  113. open.BorderColor3 = Color3.fromRGB(255, 255, 255)
  114. open.Position = UDim2.new(-0.0431654677, 0, 0, 0)
  115. open.Size = UDim2.new(0, 145, 0, 24)
  116. open.Font = Enum.Font.GothamSemibold
  117. open.Text = "OPEN"
  118. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  119. open.TextSize = 21.000
  120. open.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  121. open.TextWrapped = true
  122. open.MouseButton1Down:connect(function()
  123. openmain.Visible = false
  124. main.Visible = true
  125. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement