Advertisement
Waffle212

Untitled

Mar 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.53 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local main = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextButton = Instance.new("TextButton")
  8. local TextButton_2 = Instance.new("TextButton")
  9. local Swordsimulator = Instance.new("TextButton")
  10. --Properties:
  11. main.Name = "main"
  12. main.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. main.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Frame.Parent = main
  16. Frame.BackgroundColor3 = Color3.new(0, 1, 0)
  17. Frame.Position = UDim2.new(0.0760094747, 0, 0.171303093, 0)
  18. Frame.Size = UDim2.new(0, 729, 0, 509)
  19.  
  20. TextLabel.Parent = Frame
  21. TextLabel.BackgroundColor3 = Color3.new(0.0392157, 0.87451, 1)
  22. TextLabel.BackgroundTransparency = 1
  23. TextLabel.Size = UDim2.new(0, 729, 0, 50)
  24. TextLabel.Font = Enum.Font.SourceSans
  25. TextLabel.Text = "Choose the game"
  26. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  27. TextLabel.TextScaled = true
  28. TextLabel.TextSize = 14
  29. TextLabel.TextWrapped = true
  30.  
  31. TextButton.Parent = Frame
  32. TextButton.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  33. TextButton.Position = UDim2.new(-0.00137174211, 0, 0.141453832, 0)
  34. TextButton.Size = UDim2.new(0, 200, 0, 50)
  35. TextButton.Font = Enum.Font.SourceSans
  36. TextButton.Text = "Prison Life"
  37. TextButton.TextColor3 = Color3.new(0, 0, 0)
  38. TextButton.TextScaled = true
  39. TextButton.TextSize = 14
  40. TextButton.TextWrapped = true
  41.  
  42. TextButton_2.Parent = Frame
  43. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  44. TextButton_2.BackgroundTransparency = 1
  45. TextButton_2.Position = UDim2.new(0.938271582, 0, 0, 0)
  46. TextButton_2.Size = UDim2.new(0, 45, 0, 38)
  47. TextButton_2.Font = Enum.Font.SourceSans
  48. TextButton_2.Text = "X"
  49. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  50. TextButton_2.TextScaled = true
  51. TextButton_2.TextSize = 14
  52. TextButton_2.TextWrapped = true
  53.  
  54. Swordsimulator.Name = "Sword simulator"
  55. Swordsimulator.Parent = Frame
  56. Swordsimulator.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  57. Swordsimulator.Position = UDim2.new(0.331961602, 0, 0.141453832, 0)
  58. Swordsimulator.Size = UDim2.new(0, 200, 0, 50)
  59. Swordsimulator.Font = Enum.Font.SourceSans
  60. Swordsimulator.Text = "Sword Simulator"
  61. Swordsimulator.TextColor3 = Color3.new(0, 0, 0)
  62. Swordsimulator.TextScaled = true
  63. Swordsimulator.TextSize = 14
  64. Swordsimulator.TextWrapped = true
  65. -- Scripts:
  66. function SCRIPT_XVLX74_FAKESCRIPT() -- Frame.LocalScript
  67. local script = Instance.new('LocalScript')
  68. script.Parent = Frame
  69. local UserInputService = game:GetService("UserInputService")
  70.  
  71. local gui = script.Parent
  72.  
  73. local dragging
  74. local dragInput
  75. local dragStart
  76. local startPos
  77.  
  78. local function update(input)
  79. local delta = input.Position - dragStart
  80. gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  81. end
  82.  
  83. gui.InputBegan:Connect(function(input)
  84. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  85. dragging = true
  86. dragStart = input.Position
  87. startPos = gui.Position
  88.  
  89. input.Changed:Connect(function()
  90. if input.UserInputState == Enum.UserInputState.End then
  91. dragging = false
  92. end
  93. end)
  94. end
  95. end)
  96.  
  97. gui.InputChanged:Connect(function(input)
  98. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  99. dragInput = input
  100. end
  101. end)
  102.  
  103. UserInputService.InputChanged:Connect(function(input)
  104. if input == dragInput and dragging then
  105. update(input)
  106. end
  107. end)
  108.  
  109. end
  110. coroutine.resume(coroutine.create(SCRIPT_XVLX74_FAKESCRIPT))
  111. function SCRIPT_GMXR73_FAKESCRIPT() -- TextButton.LocalScript
  112. local script = Instance.new('LocalScript')
  113. script.Parent = TextButton
  114. script.Parent.MouseButton1Click:Connect(function()
  115. loadstring(game:HttpGet(('https://pastebin.com/raw/ReHLcp28'),true))()
  116. end)
  117.  
  118.  
  119. end
  120. coroutine.resume(coroutine.create(SCRIPT_GMXR73_FAKESCRIPT))
  121. function SCRIPT_BQYQ79_FAKESCRIPT() -- TextButton_2.LocalScript
  122. local script = Instance.new('LocalScript')
  123. script.Parent = TextButton_2
  124. script.Parent.MouseButton1Click:Connect(function()
  125. script.Parent.Parent.Visible = false
  126. end)
  127.  
  128. end
  129. coroutine.resume(coroutine.create(SCRIPT_BQYQ79_FAKESCRIPT))
  130. function SCRIPT_OUKN69_FAKESCRIPT() -- Swordsimulator.LocalScript
  131. local script = Instance.new('LocalScript')
  132. script.Parent = Swordsimulator
  133. script.Parent.MouseButton1Click:Connect(function()
  134. loadstring(game:HttpGet(('https://pastebin.com/raw/1FBGpcwb'),true))()
  135. end)
  136.  
  137.  
  138. end
  139. coroutine.resume(coroutine.create(SCRIPT_OUKN69_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement