Created by coI0e
Features:
- GET SCAVENGER HUNT ITEM
- TRIVIA ITEM
- MERCH
SCRIPTS: [2]
1ST SCRIPT: MAIN GAME SCRIPT
for i,v in pairs(workspace.Scavenger:GetDescendants()) do
if v:FindFirstChild("TouchInterest") then
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v,0)
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v,1)
task.wait()
end
end
task.wait()
for i,v in pairs(workspace["Trivia Hall"].TriviaReward:GetChildren()) do
if v:FindFirstChild("TouchInterest") then
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v,0)
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v,1)
end
end
2ND SCRIPT: EXECUTE IN DESTRUCTION MINIGAME
for i,v in pairs(workspace.Destructable:GetDescendants()) do
if v:IsA("BasePart") then
game:GetService("ReplicatedStorage").ExplosionEvent:FireServer(v, 1)
game:GetService("ReplicatedStorage").ExplosionEvent:FireServer(v, 0)
end
end