Advertisement
kolijake

No name SS

Aug 20th, 2020
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. -- Made by me again :)
  2.  
  3. -- Instances:
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local main = Instance.new("Frame")
  7. local execute = Instance.new("TextButton")
  8. local TextBox = Instance.new("TextBox")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  18. main.Position = UDim2.new(0.405109495, 0, 0.278330028, 0)
  19. main.Size = UDim2.new(0, 326, 0, 184)
  20. main.Active = true
  21. main.Draggable = true
  22.  
  23. execute.Name = "execute"
  24. execute.Parent = main
  25. execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  26. execute.Position = UDim2.new(0.190184057, 0, 0.743788838, 0)
  27. execute.Size = UDim2.new(0, 202, 0, 37)
  28. execute.Font = Enum.Font.SourceSans
  29. execute.Text = "execute"
  30. execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  31. execute.TextScaled = true
  32. execute.TextSize = 14.000
  33. execute.TextWrapped = true
  34.  
  35. TextBox.Parent = main
  36. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  37. TextBox.Position = UDim2.new(0.0429447852, 0, 0.0923913047, 0)
  38. TextBox.Size = UDim2.new(0, 298, 0, 106)
  39. TextBox.Font = Enum.Font.SourceSans
  40. TextBox.Text = ""
  41. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. TextBox.TextSize = 19.000
  43. TextBox.TextWrapped = true
  44. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  45. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  46.  
  47. execute.MouseButton1Click:connect(function()
  48. game.ReplicatedStorage.RemoteEvent:FireServer(TextBox.Text)
  49. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement