Advertisement
AbstractPoo

Superpower Simulator

Dec 9th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.72 KB | None | 0 0
  1. -- Instances:
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local FrameObject = Instance.new("Frame")
  5. local Crowns = Instance.new("TextButton")
  6. local Experience = Instance.new("TextButton")
  7. local Strength = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextLabel_2 = Instance.new("TextLabel")
  10. local TextLabel_3 = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. FrameObject.Name = "FrameObject"
  18. FrameObject.Parent = ScreenGui
  19. FrameObject.BackgroundColor3 = Color3.new(1, 1, 1)
  20. FrameObject.BorderColor3 = Color3.new(1, 1, 1)
  21. FrameObject.Position = UDim2.new(0.905367255, 0, 0.68898809, 0)
  22. FrameObject.Size = UDim2.new(0, 134, 0, 209)
  23.  
  24. Crowns.Name = "Crowns"
  25. Crowns.Parent = FrameObject
  26. Crowns.BackgroundColor3 = Color3.new(1, 1, 1)
  27. Crowns.Position = UDim2.new(0, 0, 0.349345952, 0)
  28. Crowns.Size = UDim2.new(0, 134, 0, 47)
  29. Crowns.Font = Enum.Font.SourceSans
  30. Crowns.Text = "AutoFarm Crowns"
  31. Crowns.TextColor3 = Color3.new(0, 0, 0)
  32. Crowns.TextSize = 14
  33.  
  34. Experience.Name = "Experience"
  35. Experience.Parent = FrameObject
  36. Experience.BackgroundColor3 = Color3.new(1, 1, 1)
  37. Experience.Position = UDim2.new(0, 0, 0.57472837, 0)
  38. Experience.Size = UDim2.new(0, 134, 0, 44)
  39. Experience.Font = Enum.Font.SourceSans
  40. Experience.Text = "AutoFarm Experience"
  41. Experience.TextColor3 = Color3.new(0, 0, 0)
  42. Experience.TextSize = 14
  43.  
  44. Strength.Name = "Strength"
  45. Strength.Parent = FrameObject
  46. Strength.BackgroundColor3 = Color3.new(1, 1, 1)
  47. Strength.Position = UDim2.new(0, 0, 0.785254657, 0)
  48. Strength.Size = UDim2.new(0, 134, 0, 50)
  49. Strength.Font = Enum.Font.SourceSans
  50. Strength.Text = "AutoFarm Strength"
  51. Strength.TextColor3 = Color3.new(0, 0, 0)
  52. Strength.TextSize = 14
  53.  
  54. TextLabel.Parent = FrameObject
  55. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  56. TextLabel.BorderColor3 = Color3.new(1, 1, 1)
  57. TextLabel.Size = UDim2.new(0, 134, 0, 19)
  58. TextLabel.Font = Enum.Font.SourceSans
  59. TextLabel.Text = "AutoFarm Gui"
  60. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  61. TextLabel.TextSize = 14
  62.  
  63. TextLabel_2.Parent = FrameObject
  64. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  65. TextLabel_2.BorderColor3 = Color3.new(1, 1, 1)
  66. TextLabel_2.Position = UDim2.new(0, 0, 0.0909090936, 0)
  67. TextLabel_2.Size = UDim2.new(0, 134, 0, 22)
  68. TextLabel_2.Font = Enum.Font.SourceSans
  69. TextLabel_2.Text = "made by AbstractPoo"
  70. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  71. TextLabel_2.TextSize = 14
  72.  
  73. TextLabel_3.Parent = FrameObject
  74. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  75. TextLabel_3.BorderColor3 = Color3.new(1, 1, 1)
  76. TextLabel_3.Position = UDim2.new(0, 0, 0.196172252, 0)
  77. TextLabel_3.Size = UDim2.new(0, 134, 0, 25)
  78. TextLabel_3.Font = Enum.Font.SourceSans
  79. TextLabel_3.Text = "toggle = m"
  80. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  81. TextLabel_3.TextSize = 14
  82.  
  83. -- Scripts:
  84.  
  85. local function DALYTNZ_fake_script() -- Crowns.LocalScript
  86.     local script = Instance.new('LocalScript', Crowns)
  87.  
  88.     local button = script.Parent
  89.      
  90.         local function onButtonActivated()
  91.                
  92.         local Crown = game.Workspace.Filter.Crowns
  93.        
  94.         while wait(1) do
  95.             local crowns = game.Workspace.Filter:GetChildren()
  96.             for i,v in pairs(crowns) do
  97.                 if v.Name == "Crowns" and v.Transparency == 0 then
  98.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  99.                     wait(1)
  100.                 end
  101.             end
  102.         end
  103.     end
  104.      
  105.     button.Activated:Connect(onButtonActivated)
  106. end
  107. coroutine.wrap(DALYTNZ_fake_script)()
  108. local function URMU_fake_script() -- Experience.LocalScript
  109.     local script = Instance.new('LocalScript', Experience)
  110.  
  111.     local button = script.Parent
  112.      
  113.     local function onButtonActivated()
  114.            
  115.         local Experience = game.Workspace.Filter.Experience
  116.        
  117.         while wait(1) do
  118.             local experience = game.Workspace.Filter:GetChildren()
  119.             for i,v in pairs(experience) do
  120.                 if v.Name == "Experience" and v.Transparency == 0 then
  121.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  122.                     wait(1)
  123.                 end
  124.             end
  125.         end
  126.     end
  127.      
  128.     button.Activated:Connect(onButtonActivated)
  129. end
  130. coroutine.wrap(URMU_fake_script)()
  131. local function MVEHP_fake_script() -- Strength.LocalScript
  132.     local script = Instance.new('LocalScript', Strength)
  133.  
  134.     local button = script.Parent
  135.      
  136.     local function onButtonActivated()
  137.            
  138.         local Strength = game.Workspace.Filter.Strength
  139.        
  140.         while wait(1) do
  141.             local strength = game.Workspace.Filter:GetChildren()
  142.             for i,v in pairs(strength) do
  143.                 if v.Name == "Strength" and v.Transparency == 0 then
  144.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  145.                     wait(1)
  146.                 end
  147.             end
  148.         end
  149.     end
  150.      
  151.     button.Activated:Connect(onButtonActivated)
  152.    
  153.        
  154. end
  155. coroutine.wrap(MVEHP_fake_script)()
  156. local function ZRDCHB_fake_script() -- ScreenGui.LocalScript
  157.     local script = Instance.new('LocalScript', ScreenGui)
  158.  
  159.     local FrameObject = script.Parent.FrameObject
  160.     local visible = true
  161.    
  162.     local PositionClosed = UDim2.new{0.304, 0,-1.294, 0}
  163.     local PostionOpen = UDim2.new{0.304, 0,0.294, 0}
  164.    
  165.     local UserInputService = game:GetService("UserInputService")
  166.    
  167.     UserInputService.InputBegan:connect(function(keyCode)
  168.         if keyCode.keyCode == Enum.KeyCode.M and visible == true then
  169.             FrameObject.Visible = false
  170.             visible = false
  171.         else if keyCode.keyCode == Enum.KeyCode.M and visible == false then
  172.             FrameObject.Visible = true
  173.             visible = true
  174.         end
  175.         end
  176.        
  177.     end)
  178.    
  179.     frame = script.Parent.FrameObject
  180.     frame.Draggable = true
  181.     frame.Active = true
  182.     frame.Selectable = true
  183. end
  184. coroutine.wrap(ZRDCHB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement