Skip to content

Commit

Permalink
Create BIGPBAutoKill.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinGoGaming authored Aug 26, 2023
1 parent 8525a95 commit c8b4e6a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions scripts/BIGPBAutoKill.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
local PrePoint = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
local gui = Instance.new("ScreenGui")
gui.Parent = game.Players.LocalPlayer.PlayerGui
local t = Instance.new("TextLabel")
t.Parent = gui
t.Text = "5 - Mika"
t.AnchorPoint = Vector2.new(0.5, 0.5)
t.Position = UDim2.fromScale(0.5, 0.3)
t.TextSize = 20
t.ZIndex = 2000
wait(1)
t.Text = "4 - Mika"
wait(1)
t.Text = "3 - Mika"
wait(1)
t.Text = "2 - Mika"
wait(1)
t.Text = "1 - Mika"
wait(1)
t:Destroy()

for k, v in pairs({1}) do
for _,p in pairs(game.Players:GetPlayers()) do
if p.Team ~= game.Players.LocalPlayer.Team then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = p.Character.HumanoidRootPart.CFrame
wait(0.2)
end
end
end
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = PrePoint

0 comments on commit c8b4e6a

Please sign in to comment.