Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

How do I modify this script to fit my needs without screwing it up?

Asked by 10 years ago

I took this script from one of the capture points in Roblox's pre-made Control Points place template because the place I'm creating has one point to capture. I would like to modify it so I can have only one capture point, which you capture by standing on a block(Not the actual capture point). The script is:

001local ControlPoint = script.Parent
002 
003wait()     
004 
005function WaitForChild(parent, instance)
006    while parent:FindFirstChild(instance) == nil do
007        parent.ChildAdded:wait()
008    end
009    return parent:FindFirstChild(instance)
010end
011 
012 
013local RATE = 1/30                                              
014local MAX_HEIGHT = 300
015local BILLBOARD_STEPS = 50
View all 209 lines...

How do I modify it without screwing it up?

1 answer

Log in to vote
0
Answered by
traigla 75
10 years ago

I would suggest scripting it yourself so that you know what you're scripting instead of trying to modify a script.

Ad

Answer this question