Advertisement
Guest User

script all hover free gamepass

a guest
Apr 8th, 2022
1,331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. local vu = game:GetService("VirtualUser")
  2. game:GetService("Players").LocalPlayer.Idled:connect(function()
  3. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  4. wait(1)
  5. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  6. end)
  7.  
  8. game.StarterGui:SetCore("SendNotification", {
  9. Title = "Gamepass Script";
  10. Text = "Made by tpsx_wars on tiktok";
  11. Duration = 8;
  12. })
  13. wait(1)
  14. game.StarterGui:SetCore("SendNotification", {
  15. Title = " Pet Simulator X";
  16. Text = "Mythical Hunter, Magic Egg, Pet Equip doesn't work";
  17. Duration = 10;
  18. })
  19.  
  20. local gmppath = require(game:GetService("ReplicatedStorage").Framework.Modules.Client["5 | Gamepasses"])
  21. gmppath.Owns = function() return true end
  22.  
  23. local tbl = require(game.ReplicatedStorage.Framework.Modules.Client["4 | Save"]).Get()
  24. tbl.Hoverboards = {}
  25. for i,v in pairs(game.ReplicatedStorage.Game.Hoverboards:GetChildren())do
  26. table.insert(tbl.Hoverboards, v.Name)
  27. end
  28. getsenv(game.Players.LocalPlayer.PlayerScripts.Scripts.GUIs.Hoverboards).Update()
  29. getsenv(game.Players.LocalPlayer.PlayerScripts.Scripts.GUIs.Hoverboards).Equip = function(board)
  30. tbl.EquippedHoverboard = board
  31. getsenv(game.Players.LocalPlayer.PlayerScripts.Scripts.GUIs.Hoverboards).Update()
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement