Advertisement
Guest User

Jeff SS

a guest
Oct 22nd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local JeffSS = Instance.new("ScreenGui")
  7. local skid = Instance.new("Frame")
  8. local Source = Instance.new("TextBox")
  9. local Execute = Instance.new("TextButton")
  10. local Clear = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. JeffSS.Name = "JeffSS"
  15. JeffSS.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. JeffSS.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. skid.Name = "skid"
  19. skid.Parent = JeffSS
  20. skid.BackgroundColor3 = Color3.new(0.580392, 0, 0)
  21. skid.Position = UDim2.new(0.175463617, 0, 0.233067736, 0)
  22. skid.Size = UDim2.new(0, 455, 0, 294)
  23.  
  24. Source.Name = "Source"
  25. Source.Parent = skid
  26. Source.BackgroundColor3 = Color3.new(0.635294, 0.129412, 0)
  27. Source.BackgroundTransparency = 0.5
  28. Source.Size = UDim2.new(0, 455, 0, 223)
  29. Source.Font = Enum.Font.SourceSans
  30. Source.Text = ""
  31. Source.TextColor3 = Color3.new(0, 0, 0)
  32. Source.TextSize = 14
  33.  
  34. Execute.Name = "Execute"
  35. Execute.Parent = skid
  36. Execute.BackgroundColor3 = Color3.new(1, 1, 1)
  37. Execute.Position = UDim2.new(0, 0, 0.759376287, 0)
  38. Execute.Size = UDim2.new(0, 200, 0, 61)
  39. Execute.Font = Enum.Font.SourceSans
  40. Execute.Text = "Execute"
  41. Execute.TextColor3 = Color3.new(0, 0, 0)
  42. Execute.TextSize = 20
  43.  
  44. Clear.Name = "Clear"
  45. Clear.Parent = skid
  46. Clear.BackgroundColor3 = Color3.new(1, 1, 1)
  47. Clear.Position = UDim2.new(0.560439587, 0, 0.759376287, 0)
  48. Clear.Size = UDim2.new(0, 200, 0, 59)
  49. Clear.Font = Enum.Font.SourceSans
  50. Clear.Text = "Clear"
  51. Clear.TextColor3 = Color3.new(0, 0, 0)
  52. Clear.TextSize = 20
  53.  
  54. Execute.MouseButton1Click:connect (function()
  55. game.ReplicatedStorage.RemoteEvent:FireServer(Source.Text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement