Advertisement
ExecutorForALLdomain

Serverside

Feb 19th, 2024 (edited)
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. local LA = Instance.new("Message",game.Players.LocalPlayer.PlayerGui)
  2. LA.Text = "MADE BY LILSKIDZ FOR YOURLOCALC00LKIDD"
  3. wait(3)
  4. LA:Destroy()
  5. -- Instances:
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local Frame = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local TextBox = Instance.new("TextBox")
  11. local TextButton = Instance.new("TextButton")
  12. local TextButton_2 = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. Frame.Parent = ScreenGui
  19. Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  20. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  21. Frame.BorderSizePixel = 0
  22. Frame.Position = UDim2.new(0.347476214, 0, 0.256823808, 0)
  23. Frame.Size = UDim2.new(0, 511, 0, 277)
  24.  
  25. TextLabel.Parent = Frame
  26. TextLabel.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  27. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  28. TextLabel.BorderSizePixel = 0
  29. TextLabel.Size = UDim2.new(0, 511, 0, 25)
  30. TextLabel.Font = Enum.Font.SourceSans
  31. TextLabel.Text = "Serverside"
  32. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  33. TextLabel.TextSize = 14.000
  34.  
  35. TextBox.Parent = Frame
  36. TextBox.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
  37. TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0)
  38. TextBox.BorderSizePixel = 0
  39. TextBox.Position = UDim2.new(0.0332681015, 0, 0.133574009, 0)
  40. TextBox.Size = UDim2.new(0, 475, 0, 184)
  41. TextBox.Font = Enum.Font.SourceSans
  42. TextBox.Text = ""
  43. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  44. TextBox.TextSize = 14.000
  45. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  46. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  47.  
  48. TextButton.Parent = TextBox
  49. TextButton.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
  50. TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  51. TextButton.BorderSizePixel = 0
  52. TextButton.Position = UDim2.new(0.0445647873, 0, 1.05315101, 0)
  53. TextButton.Size = UDim2.new(0, 157, 0, 35)
  54. TextButton.Font = Enum.Font.SourceSans
  55. TextButton.Text = "Execute"
  56. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  57. TextButton.TextSize = 31.000
  58.  
  59. TextButton_2.Parent = TextBox
  60. TextButton_2.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
  61. TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  62. TextButton_2.BorderSizePixel = 0
  63. TextButton_2.Position = UDim2.new(0.62109375, 0, 1.05315101, 0)
  64. TextButton_2.Size = UDim2.new(0, 157, 0, 35)
  65. TextButton_2.Font = Enum.Font.SourceSans
  66. TextButton_2.Text = "Clear"
  67. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  68. TextButton_2.TextSize = 31.000
  69.  
  70. -- Scripts:
  71.  
  72. local function FLFISJH_fake_script() -- Frame.LocalScript
  73. local script = Instance.new('LocalScript', Frame)
  74.  
  75. frame = script.Parent
  76. frame.Draggable = true
  77. frame.Active = true
  78. frame.Selectable = true
  79. end
  80. coroutine.wrap(FLFISJH_fake_script)()
  81. local function PDVYE_fake_script() -- TextButton.LocalScript
  82. local script = Instance.new('LocalScript', TextButton)
  83.  
  84. local button = script.Parent
  85. local textbox = script.Parent.Parent
  86. local function Execute()
  87. loadstring(textbox.Text)()
  88. end
  89. end
  90. coroutine.wrap(PDVYE_fake_script)()
  91. local function TLMGCT_fake_script() -- TextButton_2.LocalScript
  92. local script = Instance.new('LocalScript', TextButton_2)
  93.  
  94. local button = script.Parent
  95. local textbox = script.Parent.Parent
  96. button.MouseButton1Click:Connect(function()
  97. textbox.Text = ""
  98. end)
  99. end
  100. coroutine.wrap(TLMGCT_fake_script)()
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement