Roblox Studio - Hide & Seek Game | Basics

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 พ.ย. 2024
  • เกม

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

  • @Absena_
    @Absena_ หลายเดือนก่อน +2

    keep up the good work it looks fun and better then the original one id love to try it

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

    Great video and very informative❕❗️❕🤍❤🤍

  • @cyrusEdits864
    @cyrusEdits864 6 วันที่ผ่านมา

    what if i want the code to select random players as the seeker

  • @LoseIsMine勝つ
    @LoseIsMine勝つ 18 วันที่ผ่านมา

    for some reason whenever i test game with the 2 players thing no one is chosen as it but if i play the game normally it works

    • @tropicalmasterpiece
      @tropicalmasterpiece  18 วันที่ผ่านมา

      Can you provide the part of your script that would choose a player? Is it trying to find your username instead of a random one?

  • @LoseIsMine勝つ
    @LoseIsMine勝つ 18 วันที่ผ่านมา

    so i cant test the game with 2 people

  • @sirFIGO-234
    @sirFIGO-234 17 วันที่ผ่านมา

    9:14 the script doesnt work see my script
    local tweenService = game:GetService("TweenService")
    local player = game.Players:WaitForChild("TropicalMasterpiece")
    local character = player.character or player.characterAdedd:Wait()
    local root = character.HumanoidRootPart
    local ball = Instance.new("Part",character)
    ball.CFrame = root.CFrame
    ball.CanCollide = false
    ball.Shape = Enum.PartType.Ball
    local weld = Instance.new("WeldConstraint",root)
    weld.Name = "TagWeld"
    weld.Part0 = root
    weld.Part1 = ball
    ball.Size = Vector3.new(9,9,9)
    ball.Transparency = 0.8
    ball.Touched:Connect(function(part)
    local player = part.Parent
    if part.Parent:FindFirstChild("Humanoid") then
    --Freazing the player
    local rootTagged = player.HumanoidRootPart
    rootTagged.Anchorad = true
    local freeze = Instance.new("Part")
    freeze.CFrame = rootTagged.CFrame

    local weld = Instance.new("WeldConstraint",rootTagged)
    weld.Name = "FreezeWeld"
    weld.Part0 = root
    weld.Part1 = freeze

    freeze.Transparency = 0.6
    freeze.BrickColor = BrickColor.Blue()
    freeze.Size = Vector3.new(1,1,1)

    local tweenInfo = TweenInfo.new(0.5,Enum.EasingStyle.Sine)
    local goal = {} goal.Size = Vector3.new(4,5,2) goal.CFrame = rootTagged.CFrame
    local tween = tweenService:Create(freeze,tweenInfo,goal)
    tween:Play()
    end
    end)

    • @tropicalmasterpiece
      @tropicalmasterpiece  17 วันที่ผ่านมา

      Your script looks fine, other than a few typos.
      When you check for your local player, make sure you change "TropicalMasterpiece" to your roblox username.
      When you check for your local character, change CharacterAdedd:Wait() to CharacterAdded:Wait()
      In your touched function, once you freeze the player, change "rootTagged.Anchorad = true" to "rootTagged.Anchored = true"
      Hope this helps!

  • @sirFIGO-234
    @sirFIGO-234 17 วันที่ผ่านมา

    ok,give me the script to copy it and make round system +maps+spectate for die people

  • @Ac3Fr
    @Ac3Fr 12 วันที่ผ่านมา

    can you send the script because it dont work

  • @sirFIGO-234
    @sirFIGO-234 18 วันที่ผ่านมา +1

    pls give me the script becuse it doesnt work

    • @tropicalmasterpiece
      @tropicalmasterpiece  18 วันที่ผ่านมา

      What doesn't work in the script, could you provide me with yours?
      Anyways, I plan on making a dedicated tutorial series for this in the future, and I plan on making the game uncopylocked once I publish it.