Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- This script names the sheriff and murderer in the console (F9) and teleport's you to the gun if its dropped.
- -- This script will not work if you have the dual knife effect.
- -- This script was made by Luna#9505
- for i,v in pairs(game.Players:GetChildren()) do
- if v.Backpack.Knife ~= nil or v.Character.Knife ~= nil then
- print(v.Name .. " is murderer")
- end
- end
- for i,v in pairs(game.Players:GetChildren()) do
- if v.Backpack.Gun ~= nil or v.Backpack.Revolver ~= nil or v.Character.Gun ~= nil or v.Character.Revolver ~= nil then
- print(v.Name .. " is sheriff")
- end
- end
- if workspace.GunDrop ~= nil then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(workspace.GunDrop.Position)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement