Advertisement
xdJustice29

Untitled

May 12th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. local Waste = Instance.new("ScreenGui")
  2. local back = Instance.new("Frame")
  3. local main = Instance.new("TextButton")
  4. local title = Instance.new("TextLabel")
  5. --Properties:
  6. Waste.Name = "Waste"
  7. Waste.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  8. Waste.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9.  
  10. back.Name = "back"
  11. back.Parent = Waste
  12. back.BackgroundColor3 = Color3.new(0, 0, 0)
  13. back.BorderColor3 = Color3.new(0.666667, 0, 0)
  14. back.BorderSizePixel = 4
  15. back.Position = UDim2.new(0.0951035768, 0, 0.400398403, 0)
  16. back.Size = UDim2.new(0, 250, 0, 100)
  17.  
  18. main.Name = "main"
  19. main.Parent = back
  20. main.BackgroundColor3 = Color3.new(0.333333, 1, 0.498039)
  21. main.BorderSizePixel = 0
  22. main.Position = UDim2.new(0.100000001, 0, 0.600000024, 0)
  23. main.Size = UDim2.new(0, 200, 0, 40)
  24. main.Font = Enum.Font.Gotham
  25. main.Text = "Do it."
  26. main.TextColor3 = Color3.new(0, 0, 0)
  27. main.TextScaled = true
  28. main.TextSize = 14
  29. main.TextWrapped = true
  30.  
  31. title.Name = "title"
  32. title.Parent = back
  33. title.BackgroundColor3 = Color3.new(1, 1, 1)
  34. title.BackgroundTransparency = 1
  35. title.Size = UDim2.new(0, 250, 0, 50)
  36. title.Font = Enum.Font.Gotham
  37. title.Text = "Windows Error Simulator All Badges"
  38. title.TextColor3 = Color3.new(1, 1, 1)
  39. title.TextScaled = true
  40. title.TextSize = 14
  41. title.TextWrapped = true
  42. -- Scripts:
  43. function SCRIPT_VOXA80_FAKESCRIPT() -- main.Script
  44. local script = Instance.new('Script')
  45. script.Parent = main
  46. script.Parent.MouseButton1Down:connect(function()
  47. local badges = {
  48. 714059178,
  49. 714059563,
  50. 714060379,
  51. 714062592,
  52. 714063138
  53. }
  54.  
  55. for i,v in pairs(badges) do
  56. game.ReplicatedStorage.Badges:FireServer(v)
  57. end
  58.  
  59. script.Parent.Parent.Parent:Destroy()
  60. end)
  61.  
  62. end
  63. coroutine.resume(coroutine.create(SCRIPT_VOXA80_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement