Advertisement
ExecutorForALLdomain

idiot

Feb 19th, 2024 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. -- Gui created by lilskidz
  2. -- Idea by yourlocalc00lkidd
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local ImageLabel = Instance.new("ImageLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local TextLabel = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ResetOnSpawn = false
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  19. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  20. Frame.BorderSizePixel = 0
  21. Frame.Position = UDim2.new(0.496708125, 0, 0.278922379, 0)
  22. Frame.Size = UDim2.new(0, 398, 0, 302)
  23.  
  24. ImageLabel.Parent = Frame
  25. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  26. ImageLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  27. ImageLabel.BorderSizePixel = 0
  28. ImageLabel.Position = UDim2.new(0.0376884416, 0, 0.100885957, 0)
  29. ImageLabel.Size = UDim2.new(0, 367, 0, 258)
  30. ImageLabel.Image = "http://www.roblox.com/asset/?id=8464161396"
  31.  
  32. TextButton.Parent = Frame
  33. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  34. TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  35. TextButton.BorderSizePixel = 0
  36. TextButton.Position = UDim2.new(0.876884401, 0, 0, 0)
  37. TextButton.Size = UDim2.new(0, 49, 0, 22)
  38. TextButton.Font = Enum.Font.SourceSans
  39. TextButton.Text = "X"
  40. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. TextButton.TextSize = 14.000
  42.  
  43. TextLabel.Parent = Frame
  44. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  45. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  46. TextLabel.BorderSizePixel = 0
  47. TextLabel.Position = UDim2.new(0.0175879393, 0, 0, 0)
  48. TextLabel.Size = UDim2.new(0, 193, 0, 22)
  49. TextLabel.Font = Enum.Font.SourceSans
  50. TextLabel.Text = "You Are An Idiot!"
  51. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  52. TextLabel.TextScaled = true
  53. TextLabel.TextSize = 25.000
  54. TextLabel.TextWrapped = true
  55. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  56.  
  57. -- Scripts:
  58.  
  59. local function SPKSQWE_fake_script() -- ImageLabel.LocalScript
  60. local script = Instance.new('LocalScript', ImageLabel)
  61.  
  62. local IM = script.Parent
  63. local main = script.Parent.Parent
  64.  
  65.  
  66. if IM then
  67. local Sound = Instance.new("Sound", game.SoundService)
  68. Sound.SoundId = "rbxassetid://2665943889"
  69. Sound.Playing = true
  70. Sound.Looped = true
  71. Sound.Volume = 10
  72. end
  73.  
  74. while true do
  75. for i = 1, 4 do
  76. IM.Image = "rbxassetid://530330570"
  77. wait(0.1)
  78. IM.Image = "rbxassetid://11748319807"
  79. wait(0.1)
  80. end
  81.  
  82. -- Multiply and move the window every 2 seconds
  83. local TweenService = game:GetService("TweenService")
  84. local goal = {}
  85. goal.Position = UDim2.new(math.random(), 0, math.random(), 0)
  86.  
  87. local tweenInfo = TweenInfo.new(2, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut)
  88. local tween = TweenService:Create(main, tweenInfo, goal)
  89. tween:Play()
  90.  
  91. wait(0.0001)
  92. local clone = main:Clone()
  93. clone.Parent = main.Parent
  94. clone.Position = UDim2.new(math.random(), 0, math.random(), 0)
  95.  
  96. wait(2)
  97. end
  98.  
  99. end
  100. coroutine.wrap(SPKSQWE_fake_script)()
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement