How to make working gamepasses into shop in Roblox Studio.

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ต.ค. 2024

ความคิดเห็น • 17

  • @Asmir353
    @Asmir353 4 หลายเดือนก่อน

    Helpful

  • @Omaksi_8152
    @Omaksi_8152 4 หลายเดือนก่อน

    OH GOD 20MINUTES!!!!

  • @Omaksi_8152
    @Omaksi_8152 4 หลายเดือนก่อน

    yo ty

    • @AshLovesCash798
      @AshLovesCash798  4 หลายเดือนก่อน

      No Problem Do you have any more request?

    • @Omaksi_8152
      @Omaksi_8152 4 หลายเดือนก่อน

      @@AshLovesCash798 not for rn but ty

    • @AshLovesCash798
      @AshLovesCash798  4 หลายเดือนก่อน

      @@Omaksi_8152 Alright

  • @Omaksi_8152
    @Omaksi_8152 4 หลายเดือนก่อน

    ill do this tommorow bc it dont working for me

  • @trainingartist7786
    @trainingartist7786 4 หลายเดือนก่อน

    Can you make a new video on how to install Web Catalog on Chromebook the last one seems outdated even when I tried to change the number of the code to match the latest version of Web Catalog

    • @AshLovesCash798
      @AshLovesCash798  4 หลายเดือนก่อน

      Well No but if its outdated make sure to replace it with the updated version of the file

  • @nifflergaming9351
    @nifflergaming9351 3 หลายเดือนก่อน

    how do i grant the player extra speed and higher jump

    • @AshLovesCash798
      @AshLovesCash798  3 หลายเดือนก่อน

      To grant extra speed and higher jump, you can use a LocalScript to modify the player's walk speed and jump power when they own the gamepass. Here’s an example of how you can do it:
      Create a LocalScript inside the StarterPlayerScripts.
      Use the following code:
      lua
      Copy code
      local Players = game:GetService("Players")
      local player = Players.LocalPlayer
      local GamePassId = 12345678 -- replace with your gamepass ID
      local SpeedBoost = 50
      local JumpBoost = 100
      local function grantBoosts()
      if player and player.Character then
      player.Character.Humanoid.WalkSpeed = SpeedBoost
      player.Character.Humanoid.JumpPower = JumpBoost
      end
      end
      local function checkGamePass()
      local hasPass = false
      -- Check if the player owns the gamepass
      local success, result = pcall(function()
      return game:GetService("MarketplaceService"):UserOwnsGamePassAsync(player.UserId, GamePassId)
      end)
      if success and result then
      hasPass = true
      end
      if hasPass then
      grantBoosts()
      end
      end
      player.CharacterAdded:Connect(grantBoosts)
      checkGamePass()
      Replace 12345678 with your gamepass ID, and adjust SpeedBoost and JumpBoost to the desired values. This script will grant the player extra speed and higher jump when they own the gamepass.

    • @nifflergaming9351
      @nifflergaming9351 3 หลายเดือนก่อน

      @@AshLovesCash798 thanks

    • @AshLovesCash798
      @AshLovesCash798  3 หลายเดือนก่อน

      @@nifflergaming9351 No problem

  • @LOL666PX
    @LOL666PX 4 หลายเดือนก่อน

    for people too lazy to watch this tutorial, there are better ones and shorter ones you can watch

  • @Omaksi_8152
    @Omaksi_8152 4 หลายเดือนก่อน

    oh bc scripts so long

    • @AshLovesCash798
      @AshLovesCash798  4 หลายเดือนก่อน

      Yeah i had to type Because i usually copy it before starting my video but since it had 2 scripts i had to type.