Advertisement
Guest User

Test

a guest
May 27th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local TEst = Instance.new("ScreenGui")
  5. local Test = Instance.new("Frame")
  6. local Script = Instance.new("TextBox")
  7. local Exe = Instance.new("TextButton")
  8. --Properties:
  9. TEst.Name = "TEst"
  10. TEst.Parent = game.CoreGui
  11. TEst.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Test.Name = "Test"
  14. Test.Parent = TEst
  15. Test.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Test.Position = UDim2.new(0.285006195, 0, 0.449715376, 0)
  17. Test.Size = UDim2.new(0, 411, 0, 192)
  18.  
  19. Script.Name = "Script"
  20. Script.Parent = Test
  21. Script.BackgroundColor3 = Color3.new(1, 1, 1)
  22. Script.Position = UDim2.new(0, 0, -0.0040063858, 0)
  23. Script.Size = UDim2.new(0, 411, 0, 148)
  24. Script.Font = Enum.Font.SourceSans
  25. Script.Text = ""
  26. Script.TextColor3 = Color3.new(0, 0, 0)
  27. Script.TextSize = 14
  28.  
  29. Exe.Name = "Exe"
  30. Exe.Parent = Test
  31. Exe.BackgroundColor3 = Color3.new(1, 1, 1)
  32. Exe.Position = UDim2.new(0, 0, 0.765625, 0)
  33. Exe.Size = UDim2.new(0, 200, 0, 50)
  34. Exe.Font = Enum.Font.SourceSans
  35. Exe.TextColor3 = Color3.new(0, 0, 0)
  36. Exe.TextSize = 14
  37. -- Scripts:
  38. Exe.MouseButton1Down:connect(function()
  39. loadstring(Script.Text)
  40. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement