Advertisement
sebi87622

Tapping Simulator Script (OP)

Nov 18th, 2022
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. if game.PlaceId == 9498006165 then
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  3. local Window = OrionLib:MakeWindow({Name = "8kSebbz Hub", HidePremium = false, IntroText="8kSebbz Hub",SaveConfig = true, ConfigFolder = "8kSebbz Hub"})
  4.  
  5. --Values
  6. _G.autoTap = true
  7. _G.autoRebirth = true
  8.  
  9. --Functions
  10.  
  11. function autoTap()
  12. while _G.autoTap == true do
  13. game:GetService("ReplicatedStorage").Events.Tap:FireServer(1)
  14. wait(.00001)
  15. end
  16. end
  17.  
  18. function autoRebirth()
  19. while _G.autoRebirth == true do
  20. game:GetService("ReplicatedStorage").Events.Rebirth:FireServer(1)
  21. wait(1)
  22. end
  23. end
  24.  
  25. --Tabs
  26. local FarmTab = Window:MakeTab({
  27. Name = "Main",
  28. Icon = "rbxassetid://4483345998",
  29. PremiumOnly = false
  30. })
  31.  
  32. local TeleportTab = Window:MakeTab({
  33. Name = "Teleport",
  34. Icon = "rbxassetid://4483345998",
  35. PremiumOnly = false
  36. })
  37.  
  38.  
  39.  
  40. --Buttons
  41.  
  42. TeleportTab:AddButton({
  43. Name = "Forest island",
  44. Callback = function()
  45. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-164.9431, 976.918213, -440.394806, 0.999961913, -3.73380438e-09, 0.00872694887, 3.60657726e-09, 1, 1.45944128e-08, -0.00872694887, -1.45623833e-08, 0.999961913)
  46. end
  47. })
  48.  
  49. TeleportTab:AddButton({
  50. Name = "Flower Island",
  51. Callback = function()
  52. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-176.647705, 1514.15344, -646.24115, -0.999948084, -6.82727785e-09, -0.0101896049, -6.26700691e-09, 1, -5.50164749e-08, 0.0101896049, -5.49497585e-08, -0.999948084)
  53. end
  54. })
  55.  
  56. TeleportTab:AddButton({
  57. Name = "Swamp island",
  58. Callback = function()
  59. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-264.019501, 2113.09375, -659.982971, -0.997935712, 1.56234083e-08, -0.0642209798, 1.57623141e-08, 1, -1.65627578e-09, 0.0642209798, -2.6651279e-09, -0.997935712)
  60. end
  61. })
  62.  
  63. TeleportTab:AddButton({
  64. Name = "Snow island",
  65. Callback = function()
  66. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-241.029938, 2933.95288, -470.761505, -0.151743904, 4.17599715e-08, 0.988419831, -8.07942513e-08, 1, -5.46528938e-08, -0.988419831, -8.81518858e-08, -0.151743904)
  67. end
  68. })
  69.  
  70.  
  71. TeleportTab:AddButton({
  72. Name = "Desert island",
  73. Callback = function()
  74. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-202.519577, 4225.05127, -778.198242, -0.0261591896, -8.52846327e-08, 0.99965781, 4.53601174e-08, 1, 8.6500819e-08, -0.99965781, 4.76073865e-08, -0.0261591896)
  75. end
  76. })
  77.  
  78.  
  79. TeleportTab:AddButton({
  80. Name = "Death island",
  81. Callback = function()
  82. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-311.146118, 5415.19092, -479.421661, -0.0394735709, 7.79337128e-08, 0.99922061, 3.43888829e-09, 1, -7.78586511e-08, -0.99922061, 3.62848945e-10, -0.0394735709)
  83. end
  84. })
  85.  
  86. TeleportTab:AddButton({
  87. Name = "Beach island",
  88. Callback = function()
  89. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-140.345093, 6881.63086, -495.682129, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  90. end
  91. })
  92.  
  93. TeleportTab:AddButton({
  94. Name = "Mines island",
  95. Callback = function()
  96. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-243.258667, 8376.5166, -483.889771, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  97. end
  98. })
  99.  
  100. --Toggles
  101. FarmTab:AddToggle({
  102. Name = "Auto Tap",
  103. Default = false,
  104. Callback = function(Value)
  105. _G.autoTap = Value
  106. autoTap()
  107. end
  108. })
  109.  
  110. FarmTab:AddToggle({
  111. Name = "Auto Rebirth",
  112. Default = false,
  113. Callback = function(Value)
  114. _G.autoRebirth = Value
  115. autoRebirth()
  116. end
  117. })
  118.  
  119.  
  120. end
  121. OrionLib:Init()
  122. --Please subscribe!
Tags: INFINITE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement