Advertisement
Prysq

Untitled

Oct 20th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. plrg = game.Players.LocalPlayer.PlayerGui
  3.  
  4. x = Instance.new("ScreenGui", plr.PlayerGui)
  5. y = Instance.new("Frame", x)
  6. u = Instance.new("TextButton", y)
  7. i = Instance.new("ScrollingFrame", y)
  8. w = Instance.new("Frame", y)
  9. w.Name = "BUDDERS"
  10. m = Instance.new("StringValue", y)
  11. m.Name = "Execute Script"
  12. text = Instance.new("TextLabel", w)
  13. text.Text = "LVL 7"
  14. Tbox = Instance.new("TextBox", i)
  15. Tbox.ZIndex = 10
  16. Tbox.MultiLine = true
  17. Tbox.ClearTextOnFocus = false
  18. Tbox.TextYAlignment = Enum.TextYAlignment.Top
  19. Tbox.TextXAlignment = Enum.TextXAlignment.Left
  20. y.Draggable = true
  21. y.Size = UDim2.new(0, 350, 0 ,350)
  22. y.Position = UDim2.new(0, 500, 0, 100)
  23. i.Size = UDim2.new(0, 300, 0, 250)
  24. i.Position = UDim2.new(0, 30, 0, 30)
  25. y.Active = true
  26. Tbox.Size = UDim2.new(0.95, 0, 1, 0)
  27. u.Size = UDim2.new(0, 80, 0, 30)
  28. u.Position = UDim2.new(0, 130, 0, 300)
  29. u.ZIndex = 10
  30. u.Text = "Execute"
  31. w.Size = UDim2.new(1, 0, 0, 25)
  32. w.BackgroundColor3 = Color3.new(228/255, 75/255, 63/255)
  33. text.Size = UDim2.new(1, 0, 1,0)
  34. text.TextColor3 = Color3.new(116/255, 216/255, 255/255)
  35. text.Font = Enum.Font.Highway
  36. text.FontSize = Enum.FontSize.Size24
  37. i.BackgroundColor3 = Color3.new(255/255, 255/255, 255/255)
  38. y.BackgroundColor3 = Color3.new(255/255, 255/255, 255/255)
  39. u.BackgroundColor3 = Color3.new(255/255, 111/255, 108/255)
  40. u.Font = Enum.Font.SourceSansLight
  41. u.FontSize = Enum.FontSize.Size28
  42. Tbox.BackgroundTransparency = 1
  43. Tbox.Font = Enum.Font.Code
  44. w.BackgroundColor3 = Color3.new(8/255, 160/255, 0/255)
  45. text.BackgroundTransparency = 1
  46. Tbox.FontSize = Enum.FontSize.Size18
  47.  
  48.  
  49.  
  50.  
  51.  
  52. function onClicked(GUI)
  53. plrg.ScreenGui.Frame["Execute Script"].Value = plrg.ScreenGui.Frame.ScrollingFrame.TextBox.Text
  54. wait(0.1)
  55. loadstring(plrg.ScreenGui.Frame["Execute Script"].Value)()
  56. end
  57. plr.PlayerGui.ScreenGui.Frame.TextButton.MouseButton1Click:connect(onClicked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement