FantasyGamer

Untitled

Mar 12th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local finished = Instance.new("TextButton")
  6. local inhere = Instance.new("TextBox")
  7. local explainlol = Instance.new("TextLabel")
  8. local bye = Instance.new("TextButton")
  9.  
  10. -- Properties
  11.  
  12. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.Active = true
  16. Frame.BackgroundColor3 = Color3.new(0.67451, 0, 0)
  17. Frame.Position = UDim2.new(0.5, -245, 0.5, -140)
  18. Frame.Size = UDim2.new(0, 490, 0, 280)
  19.  
  20. finished.Name = "finished"
  21. finished.Parent = Frame
  22. finished.BackgroundColor3 = Color3.new(0.756863, 0.109804, 0.109804)
  23. finished.Position = UDim2.new(0, 370, 0, 230)
  24. finished.Size = UDim2.new(0, 110, 0, 40)
  25. finished.Text = "Execute"
  26.  
  27. inhere.Name = "inhere"
  28. inhere.Parent = Frame
  29. inhere.BackgroundColor3 = Color3.new(1, 1, 1)
  30. inhere.Position = UDim2.new(0, 10, 0, 10)
  31. inhere.Size = UDim2.new(0, 450, 0, 210)
  32. inhere.MultiLine = true
  33. inhere.Text = ""
  34. inhere.TextWrapped = true
  35. inhere.TextXAlignment = Enum.TextXAlignment.Left
  36. inhere.TextYAlignment = Enum.TextYAlignment.Top
  37.  
  38. explainlol.Name = "explainlol"
  39. explainlol.Parent = Frame
  40. explainlol.Active = true
  41. explainlol.BackgroundColor3 = Color3.new(0.756863, 0.109804, 0.109804)
  42. explainlol.Position = UDim2.new(0, 10, 0, 230)
  43. explainlol.Size = UDim2.new(0, 340, 0, 40)
  44. explainlol.Text = "I dunno how many lines this boi can run (probably as much as roblox can take). Useful to use just incase your level 7 crashes. Have fun. -Krm35"
  45. explainlol.TextColor3 = Color3.new(0, 0, 0)
  46. explainlol.TextWrapped = true
  47.  
  48. bye.Name = "bye"
  49. bye.Parent = Frame
  50. bye.BackgroundColor3 = Color3.new(0.67451, 0, 0)
  51. bye.Position = UDim2.new(0, 470, 0, 0)
  52. bye.Size = UDim2.new(0, 20, 0, 20)
  53. bye.Text = "X"
  54.  
  55.  
  56. bye.MouseButton1Down:connect(function()
  57. bye.Parent.Parent:remove()
  58. end)
  59.  
  60. finished.MouseButton1Down:connect(function()
  61. datboi = finished.Parent.inhere.Text
  62. loadstring(datboi)()
  63. end)
Advertisement
Add Comment
Please, Sign In to add comment