007brieJoin Date: 2009-03-18 Post Count: 789 |
Here is a lot. The ones which affect the base, can only be use if you first run the first script listed.
=================================
BASEPLATENAME
================================
p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].Name = "Shane"
end
end
Roate base 45 degrees
=================================
game.Workspace.Shane.CFrame = CFrame.fromEulerAnglesXYZ(1,0,0)
VELOCITY
====================================
p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].Velocity = Vector3.new(10000,0,0)
end
end
ROT VELOCITY
=============================
p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].RotVelocity = Vector3.new(0,0,0)
end
end
CLEANUP
=========================
p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
if p[i].Name ~= "Shane" then
p[i]:remove()
end
end
end |
|
PyzothonJoin Date: 2011-10-26 Post Count: 822 |
I highly doubt they're from 2007, and by the way, reported for off topic spam.
Pyzothon, novice scripter/programmer. |
|
007brieJoin Date: 2009-03-18 Post Count: 789 |
Search
Jetpack script
And title rephrase:
Why don't these scripts work |
|
PyzothonJoin Date: 2011-10-26 Post Count: 822 |
local p = game.Workspace:GetChildren()
for i = 1, #p do
if p[i]:IsA("Part") then
p[i].Name = "Shane"
end
end
local p = game.Workspace:GetChildren()
for i = 1, #p do
if p[i]:IsA("Part") then
p[i].Velocity = Vector3.new(10000, 0, 0)
end
end
local p = game.Workspace:GetChildren()
for i = 1, #p do
if p[i]:IsA("Part") then
p[i].RotVelocity = Vector3.new(0, 0, 0)
end
end
local p = game.Workspace:GetChildren()
for i = 1, #p do
if p[i]:IsA("Part") then
if p[i].Name ~= "Shane" then
p[i]:Destroy()
end
end
end
Those four should work...
Pyzothon, novice scripter/programmer. |
|
007brieJoin Date: 2009-03-18 Post Count: 789 |
Ok thanks |
|
AgentFirefoxTop 100 PosterJoin Date: 2008-06-20 Post Count: 22404 |
"Roate base 45 degrees
=================================
game.Workspace.Shane.CFrame = CFrame.fromEulerAnglesXYZ(1,0,0)
That doesn't rotate 45 degrees.
It rotates the base 57.295779513082320876798154814105 degrees. |
|
PyzothonJoin Date: 2011-10-26 Post Count: 822 |
game.Workspace.Shane.CFrame = CFrame.Angles(math.rad(45), 0, 0)
Maybe?
Pyzothon, novice scripter/programmer. |
|
AgentFirefoxTop 100 PosterJoin Date: 2008-06-20 Post Count: 22404 |
Or math.pi/4. |
|
|
Well, by memory pi is 3.14159265. |
|
AgentFirefoxTop 100 PosterJoin Date: 2008-06-20 Post Count: 22404 |
3.14159265358987328
Not sure about the 8, but all the others I know for a fact. ^_^ |
|
AgentFirefoxTop 100 PosterJoin Date: 2008-06-20 Post Count: 22404 |
3.14159265358979328 ****
Keyboard fail. |
|
killjoy37Join Date: 2008-08-27 Post Count: 2821 |
@person above firefox
he is talking about pi/4 radians. if pi radians is 180 degrees, pi/4 = 45 |
|
|
lololololo i am 007bries main |
|
|
|
math.pi contains more digits than you think.
print(math.pi) --> 3.1415926535898
print(math.pi == 3.1415926535898) --> false
Anyway, math.rad(45) should work. |
|
AgentFirefoxTop 100 PosterJoin Date: 2008-06-20 Post Count: 22404 |
Pi has infinite amount of digits (thus far).
I can only memorize the first 16-17 digits.
3.141592653589793238
There's 19 digits off the top of my head. |
|
|
I can only remember: 3.14159265... D:. There's on the top of mine, XD. |
|
AgentFirefoxTop 100 PosterJoin Date: 2008-06-20 Post Count: 22404 |
Is it odd that I memorize all of these:
DLN
SSN
3.141592653589793846264
???? >_< |
|
|
Well, your an adult I'm just thirteen, but that's a probability, XD. |
|
killjoy37Join Date: 2008-08-27 Post Count: 2821 |
Is he really an adult? Shoot I thought he was like 15 maybe. |
|
PyzothonJoin Date: 2011-10-26 Post Count: 822 |
No, I thought AFF was in high school or something, he's "studying" for his exams.
Pyzothon, novice scripter/programmer. |
|
AgentFirefoxTop 100 PosterJoin Date: 2008-06-20 Post Count: 22404 |
I am (considered) and adult, as I am over 17 years. I'm in high school at the moment.
Stupid state laws prevent me from graduating early, even when I have more than enough credits to graduate... |
|