Advertisement
rrixh

lavas skript exekutor

Aug 3rd, 2023 (edited)
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. -- lava skript EXEKUTOR
  2. local scriptexecutor = Instance.new("ScreenGui") local main = Instance.new("Frame") local textbox = Instance.new("TextBox") local execute = Instance.new("TextButton") local label = Instance.new("TextLabel")
  3. scriptexecutor.Name = "scriptexecutor" scriptexecutor.Parent = game.CoreGui scriptexecutor.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  4. main.Name = "main" main.Parent = scriptexecutor main.BackgroundColor3 = Color3.fromRGB(255, 255, 255) main.Position = UDim2.new(-0.00100000005, 0, 0.875999987, 0) main.Size = UDim2.new(0, 361, 0, 93) main.Style = Enum.FrameStyle.ChatRed
  5. textbox.Name = "textbox" textbox.Parent = main textbox.BackgroundColor3 = Color3.fromRGB(223, 223, 223) textbox.Text = "" textbox.BackgroundTransparency = 0.500 textbox.BorderSizePixel = 0 textbox.Position = UDim2.new(-0.00277008303, 0, 0.193894893, 0) textbox.Size = UDim2.new(0, 330, 0, 26) textbox.Font = Enum.Font.SourceSans textbox.PlaceholderText = "script" textbox.TextColor3 = Color3.fromRGB(0, 0, 0) textbox.TextSize = 14.000
  6. execute.Name = "execute" execute.Parent = main execute.BackgroundColor3 = Color3.fromRGB(223, 223, 223)
  7. execute.BackgroundTransparency = 0.500 execute.BorderSizePixel = 0 execute.Position = UDim2.new(0.199445978, 0, 0.784946263, 0) execute.Size = UDim2.new(0, 200, 0, 25) execute.Font = Enum.Font.SourceSans execute.Text = "Exekute" execute.TextColor3 = Color3.fromRGB(0, 0, 0) execute.TextSize = 14.000 label.Name = "label" label.Parent = main label.BackgroundColor3 = Color3.fromRGB(255, 255, 255) label.BackgroundTransparency = 1.000 label.Position = UDim2.new(0.381621033, 0, -0.268817216, 0) label.Size = UDim2.new(0, 79, 0, 29) label.Font = Enum.Font.SourceSans label.Text = "Skript Exekutor" label.TextColor3 = Color3.fromRGB(255, 0, 0) label.TextSize = 30.000
  8. execute.MouseButton1Click:Connect(function() assert(loadstring(textbox.Text))() end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement