Advertisement
Guest User

ADRIAN'S EXECUTE

a guest
Jun 27th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Objects
  2.  
  3. local AdriansExecute = Instance.new("ScreenGui")
  4. local skid = Instance.new("Frame")
  5. local source = Instance.new("TextBox")
  6. local execute = Instance.new("TextButton")
  7. local clear = Instance.new("TextButton")
  8.  
  9. -- Properties
  10.  
  11. AdriansExecute.Name = "Adrian's Execute"
  12. AdriansExecute.Parent = game.CoreGui
  13. AdriansExecute.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. skid.Name = "skid"
  16. skid.Parent = AdriansExecute
  17. skid.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  18. skid.Position = UDim2.new(0.295202941, 0, 0.237191647, 0)
  19. skid.Size = UDim2.new(0, 347, 0, 263)
  20.  
  21. source.Name = "source"
  22. source.Parent = skid
  23. source.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  24. source.Size = UDim2.new(0, 347, 0, 191)
  25. source.Font = Enum.Font.SourceSans
  26. source.Text = "Enter"
  27. source.TextColor3 = Color3.new(0, 1, 0)
  28. source.TextSize = 20
  29.  
  30. execute.Name = "execute"
  31. execute.Parent = skid
  32. execute.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  33. execute.Position = UDim2.new(0, 0, 0.775665402, 0)
  34. execute.Size = UDim2.new(0, 113, 0, 50)
  35. execute.Font = Enum.Font.SourceSans
  36. execute.Text = "Execute"
  37. execute.TextColor3 = Color3.new(1, 1, 1)
  38. execute.TextSize = 30
  39.  
  40. clear.Name = "clear"
  41. clear.Parent = skid
  42. clear.BackgroundColor3 = Color3.new(1, 0, 0)
  43. clear.Position = UDim2.new(0.674351573, 0, 0.775665402, 0)
  44. clear.Size = UDim2.new(0, 113, 0, 50)
  45. clear.Font = Enum.Font.SourceSans
  46. clear.Text = "Clear"
  47. clear.TextColor3 = Color3.new(1, 1, 1)
  48. clear.TextSize = 30
  49.  
  50. execute.MouseButton1Click:connect(function()
  51.     game.ReplicatedStorage.RemoteEvent:FireServer(source.Text)
  52. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement