How to make quest system in Roblox studio (part 2)
How to make quest system in Roblox studio (part 2)
Model : https://web.roblox.com/library/11469380333/Quest-System-By-Shadowwninjaboy
Quest 1 script :
script.Parent.Triggered:Connect(function()
game.Workspace.HighlightedPart.Highlight.Enabled = true
end)
Quest script 2 :
script.Parent.Triggered:Connect(function()
game.Workspace.Joe.Transparency = 0
game.Workspace.Joe.CanCollide = true
game.Workspace.GiveSword.ProximityPrompt.Enabled = true
game.Workspace.GiveSword.ClickDetector.MaxActivationDistance = 36
end)
Give Sword Script Proximity:
local Tool = game.ReplicatedStorage.Tool
script.Parent.Triggered:Connect(function(player)
Tool.Parent = player.Backpack
end)
Give Sword Script ClickDetector:
local Tool = game.ReplicatedStorage.Tool
script.Parent.MouseClick:Connect(function(player)
Tool.Parent = player.Backpack
end)
Highlight Script:
script.Parent.Touched:Connect(function(hit)
game.Workspace.HighlightedPart.Highlight.Enabled = false
game.Workspace.PopUpForQuest.w.TextLabel.TextTransparency = 0
game.Workspace.Quest:Destroy()
game.Workspace.PuppetQuest.ProximityPrompt.Enabled = true
end)
Other Videos By ShadowsBinary
Other Statistics
Roblox Statistics For ShadowsBinary
There are 77,419 views in 163 videos for Roblox. About 6 hours worth of Roblox videos were uploaded to his channel, roughly 67.73% of the content that ShadowsBinary has uploaded to YouTube.