Bambusa
|
  |
| Joined: 20 Feb 2014 |
| Total Posts: 354 |
|
|
| 20 Jun 2015 10:28 PM |
http://www.roblox.com/games/152143041/Project-Lonely-Tree-W-I-P
Play that game. See some transparent blocks spawning and automatically deleting themselves? How is that done? |
|
|
| Report Abuse |
|
|
|
| 20 Jun 2015 10:32 PM |
wiki.roblox.com/index.php?title=Absolute_beginner%27s_guide_to_scripting There lies your answers my friend.
u sicko! |
|
|
| Report Abuse |
|
|
Bambusa
|
  |
| Joined: 20 Feb 2014 |
| Total Posts: 354 |
|
|
| 20 Jun 2015 11:09 PM |
| Ok, thank you, but before I learn scripting, does anyone knows or has an exact script that does that??? |
|
|
| Report Abuse |
|
|
mycheeze
|
  |
| Joined: 27 Jun 2011 |
| Total Posts: 6748 |
|
|
| 20 Jun 2015 11:11 PM |
local P = Instance.new('Part', workspace) P.Anchored = true for _ = 0, 1, .05 do P.Transparency = _ end P:Destroy()
Also hi Bamby the kri bb kritik <3 |
|
|
| Report Abuse |
|
|
Bambusa
|
  |
| Joined: 20 Feb 2014 |
| Total Posts: 354 |
|
|
| 20 Jun 2015 11:24 PM |
| Not helpful. Great, why do I always meet the wrong kind of people. |
|
|
| Report Abuse |
|
|
Bambusa
|
  |
| Joined: 20 Feb 2014 |
| Total Posts: 354 |
|
|
| 20 Jun 2015 11:25 PM |
| I guess nobody here can even script that. |
|
|
| Report Abuse |
|
|
DrSaint
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 18429 |
|
|
| 20 Jun 2015 11:42 PM |
@Bamb
It's the most basic script. He just posted it. What are you babbling on about? |
|
|
| Report Abuse |
|
|
Isostae
|
  |
| Joined: 14 Sep 2014 |
| Total Posts: 17706 |
|
|
| 21 Jun 2015 12:15 AM |
| bamb is trying to make us feel the need to prove the point that we can script that easy af script lmao |
|
|
| Report Abuse |
|
|
mycheeze
|
  |
| Joined: 27 Jun 2011 |
| Total Posts: 6748 |
|
|
| 21 Jun 2015 12:17 AM |
| Bamb is a immature snawb, t'was best to treat em badly <3 |
|
|
| Report Abuse |
|
|
Bambusa
|
  |
| Joined: 20 Feb 2014 |
| Total Posts: 354 |
|
|
| 21 Jun 2015 05:39 AM |
I inserted it into a brick, nothing happened. If it's so basic, why is it so hard to find? And I need you guys to play that link I provided above. If you take a look at the "dandelions" you can see exactly what I meant. I don't thing such a simple script does that. |
|
|
| Report Abuse |
|
|
|
| 21 Jun 2015 05:41 AM |
local part = script.Parent
for i=0, 1, 0.1 do part.Transparency = i wait(0.1) end
part:Destroy() |
|
|
| Report Abuse |
|
|
Bambusa
|
  |
| Joined: 20 Feb 2014 |
| Total Posts: 354 |
|
|
| 21 Jun 2015 05:43 AM |
**I don't think******
And srrsly, that script isn't helpful at all. Please tell me what I done wrong. It doesn't even do the same effect I was looking for at "Project Lonely Tree" |
|
|
| Report Abuse |
|
|
DrSaint
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 18429 |
|
|
| 21 Jun 2015 05:45 AM |
instance.new = ("part")
Then from there the script will determine the properties of the part.
After that is the movement and speed from point a to point b (vector3)
The last part is how long it takes before :remove() comes |
|
|
| Report Abuse |
|
|
|
| 21 Jun 2015 05:47 AM |
^
It's:
Instance.new("Part", --You can even put the parent here)
Enjoying your stay at the Scripters Forum? Join this! http://www.roblox.com/My/Groups.aspx?gid=2582784 |
|
|
| Report Abuse |
|
|
DrSaint
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 18429 |
|
|
| 21 Jun 2015 05:47 AM |
| Ok ok ok. I can do this. Cmon DrSaint. Remember the damn basics. |
|
|
| Report Abuse |
|
|
Mitko0o1
|
  |
| Joined: 30 Nov 2010 |
| Total Posts: 5725 |
|
|
| 21 Jun 2015 05:49 AM |
if script.Parent ~= workspace then script.Parent = workspace end
while wait(5) do local dumbpart = Instance.new("Part", workspace) dumbpart.Name = "disIsPart" dumbpart.Anchored = true dumbpart.FormFactor = "Custom" dumbpart.Size = Vector3.new(1,1,1) for i = 0, 100 do dumbpart.Transparency = i/100 wait() end game.Debris:AddItem(dumbpart, 1) end |
|
|
| Report Abuse |
|
|
DrSaint
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 18429 |
|
| |
|
Bambusa
|
  |
| Joined: 20 Feb 2014 |
| Total Posts: 354 |
|
|
| 21 Jun 2015 05:50 AM |
Wait...so where am I supposed to put the "instances.new(part)" thing?
I'm guessing it should be like this..?
local part = script.Parent Instance.new = ("part")
for i=0, 1, 0.1 do part.Transparency = i wait(0.1) end
part:Destroy()
Is it right...? (I know I sound stupid but I'm eager to learn to script) |
|
|
| Report Abuse |
|
|
DrSaint
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 18429 |
|
|
| 21 Jun 2015 05:51 AM |
| instance.new(Part, Workspace) in place of Instance.new = ("part") |
|
|
| Report Abuse |
|
|
DrSaint
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 18429 |
|
|
| 21 Jun 2015 05:51 AM |
| Instance.new("Part", Workspace)************************************ |
|
|
| Report Abuse |
|
|
Bambusa
|
  |
| Joined: 20 Feb 2014 |
| Total Posts: 354 |
|
|
| 21 Jun 2015 05:57 AM |
I'm not a good scripter, but I can already tell that all of the scripts you've given me will not work.
Besides, I'm pretty sure it's missing the script which controls can collide or not, anchored or not, the speed and direction of movement, rate of cloning, and the tiny bit of "spinning" you see just like at "project lonely tree". Is that body velocity?
And do you guys even test the script out at studio? It doesn't work. |
|
|
| Report Abuse |
|
|
DrSaint
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 18429 |
|
|
| 21 Jun 2015 05:58 AM |
@Bamb
Are you trying to troll? Because you sound like a troll. |
|
|
| Report Abuse |
|
|
|
| 21 Jun 2015 05:59 AM |
^
Use workspace rather than Workspace. :P
Enjoying your stay at the Scripters Forum? Join this! http://www.roblox.com/My/Groups.aspx?gid=2582784 |
|
|
| Report Abuse |
|
|
DrSaint
|
  |
| Joined: 14 Oct 2009 |
| Total Posts: 18429 |
|
|
| 21 Jun 2015 06:00 AM |
@Power
InSTENCE(dot)neW=""PART"",,,,WERKSPACE]
that better? |
|
|
| Report Abuse |
|
|
| |
|