Пікірлер
@kingdom3788
@kingdom3788 19 сағат бұрын
how to make a quick turn of the tower?
@voidplays9613
@voidplays9613 18 сағат бұрын
@@kingdom3788search tower optimization gnomecode addons u will find a tutorial abt it
@SuperGolem21
@SuperGolem21 21 сағат бұрын
I have a problem error is Fire is not vaild member of replicatedstorage.events.SpawnUnit the error happens on unite:fire line and if i replace it with "FireClient" it says unable to cast value to object
@voidplays9613
@voidplays9613 15 сағат бұрын
do like replicatedstorage.events.SpawnUnit:Fire(here the stuff) and it should work maxe sure u put the ":" instead of "."
@SuperGolem21
@SuperGolem21 7 минут бұрын
​@@voidplays9613still doesnt work
@electricdino724
@electricdino724 22 сағат бұрын
He summons but when i upgrade him he doesnt summon anymore Edit: I forgot to update the other scripts in the upgrades oops i fixed it tho 10/10 this tutorial is very good
@voidplays9613
@voidplays9613 15 сағат бұрын
thx
@SuperGolem21
@SuperGolem21 23 сағат бұрын
now make death animations for bosses and units :patrick:
@voidplays9613
@voidplays9613 15 сағат бұрын
idk
@iamb0
@iamb0 Күн бұрын
This is exploitable on the client-end, as you can just delete the border and place in the red border on the client side.
@voidplays9613
@voidplays9613 Күн бұрын
@@iamb0 who exploits in 2024? I think roblox banned exploiting
@iamb0
@iamb0 Күн бұрын
@@voidplays9613 exploiters can always find a new way to exploit
@trollio4606
@trollio4606 2 күн бұрын
Day 1 of asking for a unit attack addon
@voidplays9613
@voidplays9613 Күн бұрын
@@trollio4606 I will when I make it in my td
@trollio4606
@trollio4606 Күн бұрын
@@voidplays9613 epic, keep up the great work
@EthanWg2
@EthanWg2 3 күн бұрын
hey this is my last request please tell me how to do this cause if i lose on wave 9 i get 10 stars if i win on wave 10 i get 75
@EthanWg2
@EthanWg2 3 күн бұрын
nvm if i lose on wave 9 i get 5
@voidplays9613
@voidplays9613 2 күн бұрын
@@EthanWg2 change the win rewards and the amount u get per wave passes reward
@EthanWg2
@EthanWg2 2 күн бұрын
@@voidplays9613 where
@voidplays9613
@voidplays9613 2 күн бұрын
@@EthanWg2 main or round script I forgot
@yicewie
@yicewie 3 күн бұрын
thx no errors, +1 sub
@voidplays9613
@voidplays9613 3 күн бұрын
w
@EthanWg2
@EthanWg2 4 күн бұрын
How did u make ur unit image background white?
@voidplays9613
@voidplays9613 3 күн бұрын
i changed the color
@EthanWg2
@EthanWg2 4 күн бұрын
void can I play ur tds game?
@voidplays9613
@voidplays9613 3 күн бұрын
later
@EthanWg2
@EthanWg2 3 күн бұрын
@@voidplays9613 ok
@voidplays9613
@voidplays9613 5 күн бұрын
Forgot to mention in serverstorage create a folder called "Modes" create 3 bool values and name them "Easy" "Normal" and "Hard"
@electricdino724
@electricdino724 5 күн бұрын
they dont have to be called easy normal and hard right
@voidplays9613
@voidplays9613 Күн бұрын
@@electricdino724 ye u just have to chance in script
@electricdino724
@electricdino724 Күн бұрын
@@voidplays9613 Ok
@user-hd4mr9qs3b
@user-hd4mr9qs3b 5 күн бұрын
Hi, can you make the evolution of units like in anime tower defenses ?
@voidplays9613
@voidplays9613 5 күн бұрын
Mostly not bcuz Im focusing more to the tds type game
@user-hd4mr9qs3b
@user-hd4mr9qs3b 5 күн бұрын
@@voidplays9613 then can you make the road was becoming red when you place a tower?
@voidplays9613
@voidplays9613 5 күн бұрын
@@user-hd4mr9qs3b maybe
@A381z
@A381z 6 күн бұрын
am i blind or he didnt show the replicated storage event folder and values thingy?💀
@xipherzy
@xipherzy 5 күн бұрын
Idk
@voidplays9613
@voidplays9613 5 күн бұрын
Idk If I did but if I didnt just go into the scripts and when u see an event that u dont have get fired create one and put the name
@A381z
@A381z 5 күн бұрын
​@@voidplays9613 yeah i did,thx
@STINLI
@STINLI 6 күн бұрын
folder with modes what is there?
@voidplays9613
@voidplays9613 5 күн бұрын
There is 3 boolvalues called the difficulties so like "Easy" "Normal" and "Hard" and the values of the 3 are false
@EthanWg2
@EthanWg2 6 күн бұрын
Do you know how to make it when you sell towers you get half back
@voidplays9613
@voidplays9613 5 күн бұрын
Ye wait ima go to my pc and tell u when I get there
@EthanWg2
@EthanWg2 5 күн бұрын
@@voidplays9613 ok
@voidplays9613
@voidplays9613 5 күн бұрын
@@EthanWg2 create a int value in each of ur towers config and then put that value to the tower price when its the 1st upgrade put the value of the tower+ the last one so like 100 to put 200 to upgrade the value on the 2nd tower is gonna be 300 after that go to your sell function and type this function tower.Sell(player, model) if model and model:FindFirstChild("Config") then if model.Config.Owner.Value == player.Name then player.PlacedTowers:FindFirstChild(model.Config.FirstTower.Value.Name .. "s").Value -= 1 player.Gold.Value += model.Config.MoneySpent.Value / 2 model:Destroy() return true end end
@EthanWg2
@EthanWg2 5 күн бұрын
@@voidplays9613 Thank You
@portalstowerdefense
@portalstowerdefense 6 күн бұрын
you should add Background music (it would be very nice)
@voidplays9613
@voidplays9613 5 күн бұрын
There is background music already
@portalstowerdefense
@portalstowerdefense 5 күн бұрын
i dont hear it
@voidplays9613
@voidplays9613 5 күн бұрын
@@portalstowerdefense its because its low and i put the video low volume so u dont hear
@EthanWg2
@EthanWg2 6 күн бұрын
Yo Pls Help my slinger tower from gnome tower defense i changed him to a shooter but how do i change the sound to a gun?
@portalstowerdefense
@portalstowerdefense 6 күн бұрын
inside its humanoid root part Change the attack sound id to the sound u want
@EthanWg2
@EthanWg2 6 күн бұрын
@@portalstowerdefense THANK YOU
@frednado8388
@frednado8388 6 күн бұрын
Make summon enemies or spawner enemies
@voidplays9613
@voidplays9613 6 күн бұрын
bet
@arthurveronez
@arthurveronez 6 күн бұрын
vai ter addon de unit que ataca?
@voidplays9613
@voidplays9613 6 күн бұрын
nao pq ainda n descubri como fazer mas qnd descubrir vou fazer
@portalstowerdefense
@portalstowerdefense 6 күн бұрын
@@voidplays9613you can use the tower module to get it working for the unit (u must make a duplicate of tower module and change it
@CreatorreaTDS
@CreatorreaTDS 6 күн бұрын
Bro's releasing addons faster than my dad leaves
@EthanWg2
@EthanWg2 6 күн бұрын
First
@BOTANICK_ROBLOX
@BOTANICK_ROBLOX 6 күн бұрын
Cool video pls tutorial SFX
@voidplays9613
@voidplays9613 6 күн бұрын
Idk Im not good with sfx the ones I use I got off a free model
@user-ui5cm1jd4o
@user-ui5cm1jd4o 7 күн бұрын
idk if this is a bug but when i upgrade the tower tehe border dont appear no more it just appears back when i press a tower xd
@voidplays9613
@voidplays9613 6 күн бұрын
Idk man I recommend u make ur border only visible while the player is placing a tower
@Itz_MineBlock15
@Itz_MineBlock15 7 күн бұрын
Damn bro 3 addon on 1 video
@voidplays9613
@voidplays9613 6 күн бұрын
Ye there were some short ones but Im remaking the border one aswell as the spawner
@Itz_MineBlock15
@Itz_MineBlock15 6 күн бұрын
@@voidplays9613 nice
@voidplays9613
@voidplays9613 7 күн бұрын
Tomorrow I will remake this since I forgot something that Idk rn since Im gonna sleep
@portalstowerdefense
@portalstowerdefense 7 күн бұрын
do you have discord? youtube keeps deleting my comments 💀
@voidplays9613
@voidplays9613 7 күн бұрын
@@portalstowerdefense ye I have but Im about to sleep I tell u when I wake up
@portalstowerdefense
@portalstowerdefense 7 күн бұрын
@@voidplays9613 ok thx
@voidplays9613
@voidplays9613 6 күн бұрын
@@portalstowerdefense mesigmaskibidi here
@portalstowerdefense
@portalstowerdefense 6 күн бұрын
@@voidplays9613 sent friend request
@Miggs3
@Miggs3 7 күн бұрын
there are no errors but the unit just wont spawn (i used mathows waypoint system)
@voidplays9613
@voidplays9613 7 күн бұрын
I will check it tomorrow
@Miggs3
@Miggs3 7 күн бұрын
@@voidplays9613 yoooo thx
@voidplays9613
@voidplays9613 7 күн бұрын
@@Miggs3 remake coming tomrrow
@aqa222
@aqa222 6 күн бұрын
Why not use mathows unit system it was made for the waypoints but this is also good
@Miggs3
@Miggs3 4 күн бұрын
@@aqa222omg idk why didn't think of that lmao
@EthanWg2
@EthanWg2 7 күн бұрын
yo pls help i got my farm it does everything execpt give money
@_syuri7676
@_syuri7676 7 күн бұрын
Why king idle Smiliar weeping angel?
@voidplays9613
@voidplays9613 7 күн бұрын
Idk I chose to make animation like that
@EthanWg2
@EthanWg2 7 күн бұрын
can you make a tutorial on how to make a tower and give it levels
@voidplays9613
@voidplays9613 7 күн бұрын
levels how
@voidplays9613
@voidplays9613 7 күн бұрын
oh i get it upgrades right? yes i will make that video but i recommend you watch this one: kzbin.info/www/bejne/maivmJanqd9sgZY
@josediahgaming6685
@josediahgaming6685 7 күн бұрын
Login streak please? Like day 1 you get 100 cash day 2 150 cash
@voidplays9613
@voidplays9613 7 күн бұрын
make like if wave.Value == urvalue then newTower.Config.FarmCash.Value += the value u wanna add or u can do this if wave.Changed = true then newTower.Config.FarmCash.Value += the value u wanna add maybe that will work
@josediahgaming6685
@josediahgaming6685 6 күн бұрын
@@voidplays9613also can you try making a freeze tower
@voidplays9613
@voidplays9613 6 күн бұрын
@@josediahgaming6685 ye
@CreatorreaTDS
@CreatorreaTDS 7 күн бұрын
9:10 :]
@voidplays9613
@voidplays9613 7 күн бұрын
thx for the system btw it was cool so i added into video
@EthanWg2
@EthanWg2 7 күн бұрын
W video
@user-ui5cm1jd4o
@user-ui5cm1jd4o 7 күн бұрын
Yo! Its 3AM Damm
@voidplays9613
@voidplays9613 7 күн бұрын
its 3am for me just now
@user-ui5cm1jd4o
@user-ui5cm1jd4o 7 күн бұрын
@@voidplays9613 dam
@aqa222
@aqa222 7 күн бұрын
Will there be an addon showing how to make that selection gui, where when you hover it shows the next stats? It would be really useful
@voidplays9613
@voidplays9613 7 күн бұрын
ye i will make it more detailed in a future addon
@reydangameryt6815
@reydangameryt6815 7 күн бұрын
Make spawner unit attack like military base tds
@voidplays9613
@voidplays9613 7 күн бұрын
K
@arthurveronez
@arthurveronez 7 күн бұрын
keep making these videos, they are very helpful
@voidplays9613
@voidplays9613 7 күн бұрын
Tysm for the kind words will keep doing these dw
@arthurveronez
@arthurveronez 7 күн бұрын
@@voidplays9613 cê é brasileiro?
@voidplays9613
@voidplays9613 7 күн бұрын
@@arthurveronez portugues mas sim pq?
@arthurveronez
@arthurveronez 7 күн бұрын
@@voidplays9613 caramba, nunca imaginei
@voidplays9613
@voidplays9613 7 күн бұрын
Big video today wow
@EthanWg2
@EthanWg2 7 күн бұрын
Can you only have 6 towers in the shop cause when I try to add a 7th it says a error and shop doesn’t work
@voidplays9613
@voidplays9613 7 күн бұрын
Maybe your script is wrong add me on discord I will help you: mesigmaskibidi
@EthanWg2
@EthanWg2 7 күн бұрын
@@voidplays9613 nvm I figured out what it was
@BoxingSnail
@BoxingSnail 7 күн бұрын
You should upload this to pastebin! This would be alot easier for people to copy, or upload it to a model.
@voidplays9613
@voidplays9613 7 күн бұрын
Ye but I prefer people to write so they learn too thats a way I use to learn and I learned a bit writing the scripts instead of copying also my scripts have different stuff that maybe wont work on yours
@BoxingSnail
@BoxingSnail 7 күн бұрын
@@voidplays9613 Got it!
@BoxingSnail
@BoxingSnail 7 күн бұрын
@@voidplays9613 I agree, but people who are going to these videos are not even scripters who blatently copy, I am not one of those, but I have no time to write it as I am an intermediate scripter who has a 9-5. I am not saying they shouldn't learn but I am not saying that they should type everything on their own, and you should not change the script mid working.
@voidplays9613
@voidplays9613 7 күн бұрын
@@BoxingSnail ye i get it that some people dont have time but if you wanna make something you have to get some time then why make games when u dont have time? but I will probably start putting like a pastebin of some stuff like a tower model or something like that not much but still its mainly cuz im making my td as i do the addons so it takes lots of time for me and i get tired of doing stuff and doing the tutorial every day so either i can do a video each day and put like a simple model that can help a bit or post each 2 days and put a full model idk which is best
@BoxingSnail
@BoxingSnail 7 күн бұрын
@@voidplays9613 Help a bit is way better.
@user-ui5cm1jd4o
@user-ui5cm1jd4o 8 күн бұрын
attempt to index nil with 'Position' what the it says this is the error problem line 1101 Camera.CFrame = CFrame.new(towerObject.PrimaryPart.Position + towerObject.PrimaryPart.CFrame.LookVector * 4, towerObject.PrimaryPart.Position)
@voidplays9613
@voidplays9613 7 күн бұрын
Try to change primary part to HumanoidRootPart I will make a rework of this video too so if that doesnt work wait until the rework
@user-ui5cm1jd4o
@user-ui5cm1jd4o 7 күн бұрын
@@voidplays9613 i cant change it to humanoidrootpart sadly
@voidplays9613
@voidplays9613 7 күн бұрын
@@user-ui5cm1jd4o try this local height = (newTower.HumanoidRootPart.Size.Y / 2) + newTower["Left Leg"].Size.Y local offset = CFrame.new(0, -height, 0) local p = Instance.new("Part") p.Name = "Border" p.Color = Color3.new(1,0,0) p.Transparency = 1 p.Material = Enum.Material.Neon p.TopSurface = Enum.SurfaceType.Smooth p.BottomSurface = Enum.SurfaceType.Smooth p.CanCollide = true p.CanTouch = false p.Anchored = true p.CastShadow = false p.Parent = newTower p.CFrame = newTower.HumanoidRootPart.CFrame * offset * CFrame.Angles(0, 0, math.rad(90)) p.Orientation = Vector3.new(0, 0, 0) p.Size = Vector3.new(5, 0.5, 5)
@user-ui5cm1jd4o
@user-ui5cm1jd4o 7 күн бұрын
@@voidplays9613 ill try it later thank you!
@user-ui5cm1jd4o
@user-ui5cm1jd4o 7 күн бұрын
@@voidplays9613 OMG TYSM FOR FIXING IT W!
@user-ui5cm1jd4o
@user-ui5cm1jd4o 8 күн бұрын
can this affect Marat's gamemode addon?
@MyRaelName
@MyRaelName 8 күн бұрын
probably no
@MyRaelName
@MyRaelName 8 күн бұрын
This doesn't has anything to do to ruin the script so it's safe
@user-ui5cm1jd4o
@user-ui5cm1jd4o 7 күн бұрын
@@MyRaelName w
@bigplay_brawlstars6718
@bigplay_brawlstars6718 8 күн бұрын
bro, let's make sure that the tower doesn't attack?
@user-ui5cm1jd4o
@user-ui5cm1jd4o 8 күн бұрын
Addon Suggestion: How to make a plane tower(like in tds)
@EthanWg2
@EthanWg2 8 күн бұрын
do u know how to make upgrades for towers i add cause when i add them i cant change the upgrade when i try it says an x on the config upgrade please help
@voidplays9613
@voidplays9613 8 күн бұрын
go into the tower config make a stringvalue called "Upgrade" set it to ur next tower and add an int value called "Price" put the price and if u have the right script u should be able to upgrade ur towers
@EthanWg2
@EthanWg2 7 күн бұрын
@@voidplays9613 what script do I need to work on for it to upgrade cause I have my tower and 2 lvls
@weirotkiflgdds
@weirotkiflgdds 8 күн бұрын
For me it still picks randomly most of the time.
@voidplays9613
@voidplays9613 8 күн бұрын
Maybe ur path system is different then mine
@weirotkiflgdds
@weirotkiflgdds 6 күн бұрын
@@voidplays9613 Well i dont use any gnomecode map, my friend made them i just added the waypoints n stuff. Just sometimes randomly it targets nearest then switches to first.
@voidplays9613
@voidplays9613 6 күн бұрын
@@weirotkiflgdds me neither I just used gnomecode map for the tuto but for me it works
@aqa222
@aqa222 8 күн бұрын
Can you make tower sway?
@voidplays9613
@voidplays9613 8 күн бұрын
What that
@aqa222
@aqa222 8 күн бұрын
​@@voidplays9613like when the placeholder when you move the tower trying to place it, it wiggles something simmilar to camera sway but on the placeholder
@voidplays9613
@voidplays9613 8 күн бұрын
@@aqa222 oh like gravity? idk man im still a intermediate scripter so i dont know anything about that but i will try to find smth abt that
@voidplays9613
@voidplays9613 8 күн бұрын
@@aqa222 ye i probably wont bro because u know its small details and for an addon its pretty useless so
@aqa222
@aqa222 8 күн бұрын
@@voidplays9613 whyy bro its just a small detail and makes the game polished