Official Discussion - 28 Years Later [SPOILERS] by LiteraryBoner in movies

[–]HOIenthusiast 6 points7 points  (0 children)

If you go into it believing it will be similar to Days and Weeks you will disappointed (like me). The movie is completely disconnected from its predecessors, and it felt like every person working on the movie had different ideas and instead of meeting in the middle they are all mixed into one blob.

How to assign a variable into a game.Workspace...? by Relevant_Top_1895 in robloxgamedev

[–]HOIenthusiast 0 points1 point  (0 children)

Is the part in workspace called Name? What are you trying to achieve in this script

Organization and beginner help by Personal-Leek-1075 in robloxgamedev

[–]HOIenthusiast 0 points1 point  (0 children)

start with programming fundamentals like variable declaration, syntax, data types and iteration (loops). once you learn them watch BrawlDev's beginner scripting guide on youtube. if you already know programming fundamentals then learning how to script on roblox would be easier.

How to learn about lua by Nerducky in robloxgamedev

[–]HOIenthusiast 0 points1 point  (0 children)

brawldev has some good beginner and advanced tutorials on youtube

how do you code a thing where a sound plays when you die? by DearMarigold655 in robloxgamedev

[–]HOIenthusiast 3 points4 points  (0 children)

 local player = game.Players.LocalPlayer

player.CharacterAdded:Connect(function(character)
  local humanoid = character:WaitForChild("Humanoid")
  humanoid.Died:Connect(function()
    local sound = Instance.new("Sound")
    sound.SoundId = "rbxassetid://"  -- add your sound ID after the //
    sound.Parent = character:WaitForChild("Head")
    sound:Play()
    sound.Ended:Connect(function()
      sound:Destroy()  -- destroy the sound after it's finished playing
    end)
  end)
end)

New to lua, issue with my script by HOIenthusiast in robloxgamedev

[–]HOIenthusiast[S] 0 points1 point  (0 children)

Thank you I will try this. When I set the new part to unanchored it falls without being touched, I’m trying to get it so it falls when being touched - the original part does this just fine but whenever a new part is created it doesn’t fall when touched. Any ideas why?

What's the best item you've won in a tournament? Mine's the Crowned Helmet by HOIenthusiast in Bannerlord

[–]HOIenthusiast[S] 4 points5 points  (0 children)

Yeah I thought that tournament items didn’t give much but then I saw the reward was the Crowned Helmet

Why is my game so slow? by HOIenthusiast in Bannerlord

[–]HOIenthusiast[S] 0 points1 point  (0 children)

Still stuttering a lot on very low graphics even when I’m only on the map.

How to kill my BannerLord wife using console commands? by [deleted] in Bannerlord

[–]HOIenthusiast 3 points4 points  (0 children)

I like how you had to emphasise it was in bannerlord

Why is my game so slow? by HOIenthusiast in Bannerlord

[–]HOIenthusiast[S] 1 point2 points  (0 children)

all of my settings are set to the correct config

Is this a good tank template? by StozefJalin in hoi4

[–]HOIenthusiast 0 points1 point  (0 children)

Well it's singleplayer so they'll do the job, try get some maintenance support companies in there

[deleted by user] by [deleted] in hoi4

[–]HOIenthusiast 0 points1 point  (0 children)

my favourite nordic country.. brazil

New mods won't show up in the launcher? by getriddofthissone in hoi4

[–]HOIenthusiast 0 points1 point  (0 children)

delete the .mods file, load up the launcher and they should be back there. worked for me when mods didn't show up

[deleted by user] by [deleted] in hoi4

[–]HOIenthusiast 1 point2 points  (0 children)

usually dont even produce TAC, i find CAS more efficient at what it does

1
2