TheProNoob2004

Roblox CB Exploit

Jun 19th, 2016
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. ------No Problem. Its a plug-in.
  2.  
  3. plugin = PluginManager():CreatePlugin()
  4. toolbar = plugin:CreateToolbar("Plugins")
  5. toolbarbutton = toolbar:CreateButton("Script Maker","Script Maker","sct.png")
  6. while game:GetService("CoreGui"):FindFirstChild("CommandBar" )== nil do
  7. wait()
  8. if game:GetService("CoreGui"):FindFirstChild("CommandBar" )== nil then
  9. local screengui = Instance.new("ScreenGui")
  10. screengui.Parent = game:GetService("CoreGui")
  11. screengui.Name = ("CommandBar")
  12. local textlabel = Instance.new("TextLabel")
  13. textlabel.Parent = screengui
  14. textlabel.Name = "Title"
  15. textlabel.Active = true
  16. textlabel.BackgroundColor = BrickColor.new("Really black")
  17. textlabel.BorderColor3 = Color3.new(255/255,0/0,0/0)
  18. textlabel.Draggable = true
  19. textlabel.Font = "ArialBold"
  20. textlabel.FontSize = "Size14"
  21. textlabel.Position = UDim2.new(0,129,0,7)
  22. textlabel.Size = UDim2.new(0.65,0,0.05,0)
  23. textlabel.Text = "Enter your script nigga"
  24. textlabel.TextColor3 = Color3.new(255/255,255/255,255/255)
  25.  
  26. local textbox = Instance.new("TextBox")
  27. textbox.Parent = textlabel
  28. textbox.BackgroundColor = BrickColor.new("Really black")
  29. textbox.BackgroundTransparency = 0.3
  30. textbox.Position = UDim2.new(0,0,1,0)
  31. textbox.Size = UDim2.new(1,0,9,0)
  32. textbox.Text = ""
  33. textbox.TextColor3 = Color3.new(255/255,255/255,255/255)
  34. textbox.TextXAlignment = "Left"
  35. textbox.TextYAlignment = "Top"
  36. textbox.BorderColor3 = Color3.new(255/255,0/0,0/0)
  37. textbox.FontSize = "Size11"
  38. textbox.ClearTextOnFocus = false
  39. textbox.Draggable = false
  40. textbox.MultiLine = true
  41. textbox.TextWrap = true
  42.  
  43. local textbutton = Instance.new("TextButton")
  44. textbutton.Parent = textbox
  45. textbutton.BackgroundColor = BrickColor.new("Really black")
  46. textbutton.Font = "ArialBold"
  47. textbutton.FontSize = "Size14"
  48. textbutton.Position = UDim2.new(0,0,1,0)
  49. textbutton.Size = UDim2.new(1,0,0.1,0)
  50. textbutton.TextColor3 = Color3.new(255/255,255/255,255/255)
  51. textbutton.BorderColor3 = Color3.new(255/255,0/0,0/0)
  52. textbutton.Text = "Execute script"
  53.  
  54. textbutton.MouseButton1Down:connect(function()
  55. pcall(function()
  56. loadstring(textbox.Text)()
  57. end)
  58. end)
  59. else
  60. game:GetService("CoreGui").CommandBar:Remove()
  61. end
  62. end
Add Comment
Please, Sign In to add comment