Advertisement
CheaterRBLX

ROTRIGA

Oct 1st, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Rotriga = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Src = Instance.new("TextBox")
  6. local Exe = Instance.new("TextButton")
  7. local Nme = Instance.new("TextLabel")
  8. local Add = Instance.new("TextButton")
  9. local Scripts = Instance.new("ScrollingFrame")
  10. local DoomKnfe = Instance.new("TextButton")
  11. local strval = Instance.new("StringValue")
  12.  
  13. -- Properties
  14.  
  15. Rotriga.Name = "Rotriga"
  16. Rotriga.Parent = game.Players.LocalPlayer.PlayerGui
  17.  
  18. Main.Name = "Main"
  19. Main.Parent = Rotriga
  20. Main.Active = true
  21. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  22. Main.Draggable = true
  23. Main.Position = UDim2.new(0.300146401, 0, 0.30078125, 0)
  24. Main.Size = UDim2.new(0, 409, 0, 305)
  25.  
  26. Src.Name = "Src"
  27. Src.Parent = Main
  28. Src.BackgroundColor3 = Color3.new(1, 1, 1)
  29. Src.Position = UDim2.new(0.0586797073, 0, 0.152202979, 0)
  30. Src.Size = UDim2.new(0, 361, 0, 214)
  31. Src.Font = Enum.Font.Arcade
  32. Src.FontSize = Enum.FontSize.Size24
  33. Src.Text = "Paste script or select from menu then press execute"
  34. Src.TextSize = 20
  35. Src.TextWrapped = true
  36. Src.TextXAlignment = Enum.TextXAlignment.Left
  37. Src.TextYAlignment = Enum.TextYAlignment.Top
  38.  
  39. Exe.Name = "Exe"
  40. Exe.Parent = Main
  41. Exe.BackgroundColor3 = Color3.new(1, 1, 1)
  42. Exe.Position = UDim2.new(0.0586797073, 0, 0.862228513, 0)
  43. Exe.Size = UDim2.new(0, 361, 0, 35)
  44. Exe.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  45. Exe.Font = Enum.Font.Bodoni
  46. Exe.FontSize = Enum.FontSize.Size32
  47. Exe.Text = "Execute"
  48. Exe.TextSize = 30
  49. Exe.TextWrapped = true
  50.  
  51. Nme.Name = "Nme"
  52. Nme.Parent = Main
  53. Nme.BackgroundColor3 = Color3.new(1, 1, 1)
  54. Nme.BackgroundTransparency = 1
  55. Nme.Size = UDim2.new(0, 409, 0, 46)
  56. Nme.Font = Enum.Font.Antique
  57. Nme.FontSize = Enum.FontSize.Size14
  58. Nme.Text = "Ro-triga"
  59. Nme.TextColor3 = Color3.new(1, 1, 1)
  60. Nme.TextScaled = true
  61. Nme.TextSize = 14
  62. Nme.TextWrapped = true
  63.  
  64. Add.Name = "Add"
  65. Add.Parent = Main
  66. Add.BackgroundColor3 = Color3.new(1, 1, 1)
  67. Add.BackgroundTransparency = 1
  68. Add.Position = UDim2.new(0.881276786, 0, 0.0131147541, 0)
  69. Add.Size = UDim2.new(0, 43, 0, 39)
  70. Add.Font = Enum.Font.SourceSans
  71. Add.FontSize = Enum.FontSize.Size96
  72. Add.Text = "+"
  73. Add.TextColor3 = Color3.new(0.0196078, 0.901961, 1)
  74. Add.TextSize = 70
  75.  
  76. Scripts.Name = "Scripts"
  77. Scripts.Parent = Rotriga
  78. Scripts.BackgroundColor3 = Color3.new(0, 0, 0)
  79. Scripts.Position = UDim2.new(0.599560738, 0, 0.30078125, 0)
  80. Scripts.Size = UDim2.new(0, 208, 0, 305)
  81.  
  82. DoomKnfe.Name = "DoomKnfe"
  83. DoomKnfe.Parent = Scripts
  84. DoomKnfe.BackgroundColor3 = Color3.new(1, 1, 1)
  85. DoomKnfe.BackgroundTransparency = 1
  86. DoomKnfe.Position = UDim2.new(0.0192307699, 0, 0, 0)
  87. DoomKnfe.Size = UDim2.new(0, 200, 0, 50)
  88. DoomKnfe.Font = Enum.Font.SourceSans
  89. DoomKnfe.FontSize = Enum.FontSize.Size48
  90. DoomKnfe.Text = "Doom knife"
  91. DoomKnfe.TextColor3 = Color3.new(1, 1, 1)
  92. DoomKnfe.TextSize = 40
  93. DoomKnfe.TextWrapped = true
  94. strval.Parent = DoomKnfe
  95. strval.Value = game:GetObjects("rbxassetid://1046665269")[1].Source
  96. strval.Name = "Script"
  97. scriptnum = 1
  98.  
  99. Instance.new("UIListLayout", Scripts)
  100.  
  101. Add.MouseButton1Down:connect(function()
  102. local clone = DoomKnfe:Clone()
  103. clone.Text = "Script " .. "#" .. tostring(scriptnum)
  104. clone.Name = "Script " .. "#" .. tostring(scriptnum)
  105. scriptnum = scriptnum + 1
  106. clone.Script.Value = Src.Text
  107. clone.Parent = Scripts
  108. clone.MouseButton1Down:connect(function()
  109. Src.Text = clone.Script.Value
  110. end)
  111. end)
  112.  
  113. DoomKnfe.MouseButton1Down:connect(function()
  114. Src.Text = strval.Value
  115. end)
  116.  
  117. Exe.MouseButton1Down:connect(function()
  118. loadstring(Src.Text)
  119. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement