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
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!
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.
keep up the good work it looks fun and better then the original one id love to try it
Great video and very informative❕❗️❕🤍❤🤍
what if i want the code to select random players as the seeker
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
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?
so i cant test the game with 2 people
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)
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!
ok,give me the script to copy it and make round system +maps+spectate for die people
can you send the script because it dont work
pls give me the script becuse it doesnt work
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.