Advertisement
Guest User

Loadstring Executor

a guest
Apr 22nd, 2019
1,268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local LoadstringExecutor = Instance.new("ScreenGui")
  5. local script = Instance.new("Script")
  6. local TextBox = Instance.new("TextBox")
  7. local TextLabel = Instance.new("TextLabel")
  8. local Execute = Instance.new("TextButton")
  9. --Properties:
  10. LoadstringExecutor.Name = "Loadstring Executor"
  11. LoadstringExecutor.Parent = game.CoreGui
  12. LoadstringExecutor.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Frame.Parent = LoadstringExecutor
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.Position = UDim2.new(0.344444454, 0, 0.186746985, 0)
  17. Frame.Size = UDim2.new(0, 265, 0, 85)
  18. Frame.Draggable = true
  19.  
  20. script.Parent = LoadstringExecutor
  21. script.BackgroundColor3 = Color3.new(1, 1, 1)
  22. script.Position = UDim2.new(0.345833331, 0, 0.244979948, 0)
  23. script.Size = UDim2.new(0, 265, 0, 27)
  24. script.Font = Enum.Font.SourceSans
  25. script.Text = ""
  26. script.TextColor3 = Color3.new(0, 0, 0)
  27. script.TextSize = 14
  28. script.TextWrapped = true
  29.  
  30. TextLabel.Parent = LoadstringExecutor
  31. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  32. TextLabel.Position = UDim2.new(0.390277773, 0, 0.186746985, 0)
  33. TextLabel.Size = UDim2.new(0, 200, 0, 19)
  34. TextLabel.Font = Enum.Font.SourceSans
  35. TextLabel.Text = "Loadstring Executor"
  36. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  37. TextLabel.TextSize = 14
  38.  
  39. Execute.Name = "Execute"
  40. Execute.Parent = LoadstringExecutor
  41. Execute.BackgroundColor3 = Color3.new(1, 1, 1)
  42. Execute.Position = UDim2.new(0.390277773, 0, 0.317269087, 0)
  43. Execute.Size = UDim2.new(0, 200, 0, 20)
  44. Execute.Font = Enum.Font.SourceSans
  45. Execute.Text = "Execute"
  46. Execute.TextColor3 = Color3.new(0, 0, 0)
  47. Execute.TextSize = 14
  48. execute.MouseButton1Click:connect(function()
  49. loadstring(script.Text)
  50.  
  51. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement