Advertisement
kolijake

Simple SS

Aug 12th, 2020
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1.  
  2. -- Instances:
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextBox = Instance.new("TextBox")
  7. local execute = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  15. Frame.Position = UDim2.new(0.29908973, 0, 0.389662027, 0)
  16. Frame.Size = UDim2.new(0, 344, 0, 139)
  17. Frame.Active = true
  18. Frame.Draggable =true
  19.  
  20. TextBox.Parent = Frame
  21. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  22. TextBox.Position = UDim2.new(0.0297419522, 0, 0.218818933, 0)
  23. TextBox.Size = UDim2.new(0, 322, 0, 50)
  24. TextBox.ClearTextOnFocus = false
  25. TextBox.Font = Enum.Font.SourceSansBold
  26. TextBox.Text = "Script Here"
  27. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. TextBox.TextSize = 20.000
  29. TextBox.TextWrapped = true
  30.  
  31. execute.Name = "execute"
  32. execute.Parent = Frame
  33. execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  34. execute.Position = UDim2.new(0.206919134, 0, 0.653438747, 0)
  35. execute.Size = UDim2.new(0, 200, 0, 41)
  36. execute.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  37. execute.Font = Enum.Font.SourceSansBold
  38. execute.Text = "execute"
  39. execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  40. execute.TextSize = 21.000
  41. execute.MouseButton1Down:connect(function()
  42. loadstring(TextBox.Text)
  43. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement