Advertisement
JkleoMDS

Tsorix Command Bar by me

Mar 3rd, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. ----This is not a admin
  2. ----This is a loadstring exucutor and a roblox studio commands exucutor
  3. ----By Madc (JKLEOMDS)
  4. -- Objects
  5.  
  6. local TsrioxsCommandBar = Instance.new("ScreenGui")
  7. local CommandBar = Instance.new("Frame")
  8. local Name = Instance.new("TextLabel")
  9. local InputCommand = Instance.new("TextBox")
  10. local BUTTON_EXUCUTE = Instance.new("TextButton")
  11. local Login = Instance.new("Frame")
  12. local Username = Instance.new("TextBox")
  13. local Password = Instance.new("TextBox")
  14. local loginbutton = Instance.new("TextButton")
  15. local bylabel = Instance.new("TextLabel")
  16.  
  17. -- Properties
  18.  
  19. TsrioxsCommandBar.Name = "Tsriox 's Command Bar"
  20. TsrioxsCommandBar.Parent = game.CoreGui
  21.  
  22. CommandBar.Name = "Command Bar"
  23. CommandBar.Parent = TsrioxsCommandBar
  24. CommandBar.BackgroundColor3 = Color3.new(0, 0, 0)
  25. CommandBar.Position = UDim2.new(-0.0183016099, 0, 0.0128204823, 0)
  26. CommandBar.Size = UDim2.new(0, 1391, 0, 65)
  27. CommandBar.Visible = false
  28.  
  29. Name.Name = "Name"
  30. Name.Parent = CommandBar
  31. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  32. Name.Position = UDim2.new(0.311029434, 0, -0.0923076719, 0)
  33. Name.Size = UDim2.new(0, 520, 0, 15)
  34. Name.SizeConstraint = Enum.SizeConstraint.RelativeXX
  35. Name.Font = Enum.Font.SourceSans
  36. Name.Text = "Tsorix Command Bar"
  37. Name.TextSize = 14
  38.  
  39. InputCommand.Name = "InputCommand"
  40. InputCommand.Parent = CommandBar
  41. InputCommand.BackgroundColor3 = Color3.new(1, 1, 1)
  42. InputCommand.Position = UDim2.new(0, 0, 0.492307693, 0)
  43. InputCommand.Size = UDim2.new(0, 1036, 0, 18)
  44. InputCommand.Font = Enum.Font.SourceSans
  45. InputCommand.Text = "Enter Loadstring here or command"
  46. InputCommand.TextSize = 14
  47.  
  48. BUTTON_EXUCUTE.Name = "BUTTON_EXUCUTE"
  49. BUTTON_EXUCUTE.Parent = CommandBar
  50. BUTTON_EXUCUTE.BackgroundColor3 = Color3.new(1, 1, 1)
  51. BUTTON_EXUCUTE.Position = UDim2.new(0.773544192, 0, 0.138461545, 0)
  52. BUTTON_EXUCUTE.Size = UDim2.new(0, 71, 0, 50)
  53. BUTTON_EXUCUTE.Font = Enum.Font.SourceSans
  54. BUTTON_EXUCUTE.Text = "Exucute"
  55. BUTTON_EXUCUTE.TextSize = 14
  56.  
  57. Login.Name = "Login"
  58. Login.Parent = TsrioxsCommandBar
  59. Login.BackgroundColor3 = Color3.new(0, 0, 0)
  60. Login.Position = UDim2.new(0.226277381, 0, 0.199633703, 0)
  61. Login.Size = UDim2.new(0, 393, 0, 306)
  62.  
  63. Username.Name = "Username"
  64. Username.Parent = Login
  65. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  66. Username.Position = UDim2.new(0.141221374, 0, 0.258169949, 0)
  67. Username.Size = UDim2.new(0, 282, 0, 29)
  68. Username.Font = Enum.Font.SourceSans
  69. Username.Text = "(ENTER USERNAME HERE)"
  70. Username.TextSize = 14
  71.  
  72. Password.Name = "Password"
  73. Password.Parent = Login
  74. Password.BackgroundColor3 = Color3.new(1, 1, 1)
  75. Password.Position = UDim2.new(0.142493635, 0, 0.418300658, 0)
  76. Password.Size = UDim2.new(0, 282, 0, 31)
  77. Password.Font = Enum.Font.SourceSans
  78. Password.Text = "(ENTER PASSWORD HERE)"
  79. Password.TextSize = 14
  80.  
  81. loginbutton.Name = "loginbutton"
  82. loginbutton.Parent = Login
  83. loginbutton.BackgroundColor3 = Color3.new(0, 0, 0)
  84. loginbutton.Position = UDim2.new(0.246819332, 0, 0.692810476, 0)
  85. loginbutton.Size = UDim2.new(0, 200, 0, 50)
  86. loginbutton.Font = Enum.Font.SourceSans
  87. loginbutton.Text = "Login"
  88. loginbutton.TextColor3 = Color3.new(1, 1, 1)
  89. loginbutton.TextSize = 14
  90.  
  91. bylabel.Name = "bylabel"
  92. bylabel.Parent = TsrioxsCommandBar
  93. bylabel.BackgroundColor3 = Color3.new(1, 1, 1)
  94. bylabel.Position = UDim2.new(0.239051089, 0, 0.968864441, 0)
  95. bylabel.Size = UDim2.new(0, 413, 0, 17)
  96. bylabel.Font = Enum.Font.SourceSans
  97. bylabel.Text = "Tsorix by Jkleomds (MADC)"
  98. bylabel.TextSize = 14
  99.  
  100. loginbutton.MouseButton1Click:connect(function()
  101. CommandBar.Visible = true
  102. Login.Visible = false
  103. end)
  104.  
  105. BUTTON_EXUCUTE.MouseButton1Click:connect(function()
  106. loadstring(InputCommand.Text)()
  107. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement