0% found this document useful (0 votes)
4K views1 page

Breaking Point 2

The document contains a script for a game that interacts with players in the game environment. It checks if each player is not the local player, if they are not sitting, and if they have a specific item called 'Blade' either in their character or backpack. If these conditions are met, it triggers remote events to perform actions related to the player's position and item usage.

Uploaded by

shark4300.roblox
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4K views1 page

Breaking Point 2

The document contains a script for a game that interacts with players in the game environment. It checks if each player is not the local player, if they are not sitting, and if they have a specific item called 'Blade' either in their character or backpack. If these conditions are met, it triggers remote events to perform actions related to the player's position and item usage.

Uploaded by

shark4300.roblox
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

pairs(game.Players:GetPlayers()) do if v.

Name ~=
game.Players.LocalPlayer.Name then if
game.Workspace:FindFirstChild(v.Name) then if
game.Workspace[v.Name].Humanoid.Sit ~= true then if
game.Workspace[v.Name]:FindFirstChild("Blade") then
game:GetService("ReplicatedStorage").RemoteEvent:FireServer(37,
CFrame.new(Vector3.new(0, 0, 0), Vector3.new(0, 0, 0)),
Vector3.new(v.Character.HumanoidRootPart.CFrame.x, 4,
v.Character.HumanoidRootPart.CFrame.z), Vector3.new(0, 0, 0))
wait(.1)
game:GetService("ReplicatedStorage").RemoteEvent:FireServer(43,
v.Character.HumanoidRootPart, v, "IIlIla", true) else
if v.Backpack:FindFirstChild("Blade") then
game:GetService("ReplicatedStorage").RemoteEvent:FireServer(37,
CFrame.new(Vector3.new(0, 0, 0), Vector3.new(0, 0, 0)),
Vector3.new(v.Character.HumanoidRootPart.CFrame.x, 4,
v.Character.HumanoidRootPart.CFrame.z), Vector3.new(0, 0, 0))
wait(.1)
game:GetService("ReplicatedStorage").RemoteEvent:FireServer(43,
v.Character.HumanoidRootPart, v, "IIlIla", true) end
end end end end end end

You might also like