for _,v in pairs(game.Workspace.CoinsFolder:GetChildren()) do --Coin Farm, to do things @ 246 if (game.Players.LocalPlayer.Stats.CoinsPickedUpInRound.Value <= 50) then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame wait(1) v:Destroy() wait(1) end end ----------------------------------------------------------------------------------------------------------------------- local murderer local sheriff for _, v in pairs(game.Players:GetChildren()) do if v.Stats.RoundsSinceMurderer.Value == 0 then murderer = v.Name game.StarterGui:SetCore( "SendNotification", { Title = "Murderer is", Text = v.Name, Icon = "rbxassetid://8136342519", Duration = 15 } ) for _, a in pairs(game.Workspace[murderer]:GetChildren()) do for _, b in pairs(a:GetChildren()) do if b:IsA("Part") and not b:FindFirstChild("Chams") then local Box = Instance.new("BoxHandleAdornment", b) Box.Size = b.Size Box.Name = "Chams" Box.Color3 = Color3.new(1, 0, 0) Box.Adornee = b Box.AlwaysOnTop = true Box.ZIndex = 5 Box.Transparency = .5 end end end end if v.Backpack:FindFirstChild("Revolver") then sheriff = v.Name game.StarterGui:SetCore( "SendNotification", { Title = "Sheriff is", Text = v.Name, Icon = "rbxassetid://8136342519", Duration = 15 } ) for _, c in pairs(game.Workspace[sheriff]:GetChildren()) do for _, d in pairs(c:GetChildren()) do if d:IsA("Part") and not d:FindFirstChild("Chams") then local Box = Instance.new("BoxHandleAdornment", d) Box.Size = d.Size Box.Name = "Chams" Box.Color3 = Color3.new(0, 1, 0) Box.Adornee = d Box.AlwaysOnTop = true Box.ZIndex = 5 Box.Transparency = .5 end end end end end