of     1   

JuliaJune101
#223509958Friday, August 11, 2017 9:12 PM GMT

I have a basic visitor badge script and it's randomly stopped working when new people visit. Should I just remove it from the workspace completely and do it again?
JuliaJune101
#223516493Friday, August 11, 2017 11:36 PM GMT

bumppppp
JuliaJune101
#223551998Saturday, August 12, 2017 4:10 PM GMT

Bumpp
JuliaJune101
#223605978Sunday, August 13, 2017 4:12 PM GMT

I deleted and put back in the badge award script and it's still not awarding it to newcomers :/
marketmanager1
#223606104Sunday, August 13, 2017 4:15 PM GMT

Hello! A script would be useful for us to fix... Post it in your next message pls marketmanager1 -- the scripter
JuliaJune101
#223663285Monday, August 14, 2017 6:33 PM GMT

I fixed and its working again but thanks :) here it is anyways lol print("Badge Awarder Loaded. BadgeID: " .. script.Parent.BadgeID.Value) function OnTouch(part) if (part.Parent:FindFirstChild("Humanoid") ~= nil) then local p = game.Players:GetPlayerFromCharacter(part.Parent) if (p ~= nil) then print("Awarding BadgeID: " ..script.Parent.BadgeID.Value .. " to UserID: " .. p.userId) local b = game:GetService("BadgeService") b:AwardBadge(p.userId, script.Parent.BadgeID.Value) end end end script.Parent.Touched:connect(OnTouch) and then a Badge ID with the value

    of     1