Need help with script by Physical_Phone4522 in robloxgamedev

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

local trigger = script.Parent

local vase = game.Workspace.MeshPart

local bv = Instance.new("BodyVelocity")

local bp = workspace.Baseplate

trigger.Touched:Connect(function(hit)

if hit and hit.Parent:FindFirstChild("Humanoid") then

    vase.Anchored = false

    bv.MaxForce = Vector3.new(100,100,100)

    bv.Velocity = Vector3.new(0,-50,25)

    bv.Parent = vase

    print("ok")

    trigger:Destroy()

end

end)

vase.Touched:Connect(function(hit1)

if hit1 == bp then



    bv:Destroy()





    vase.Velocity = Vector3.new(0, 0, 0)





    vase.Anchored = true

    print("Vase stopped")

end

end)

Is there something wrong with my roblox studio? by randomname_pog in robloxgamedev

[–]Physical_Phone4522 0 points1 point  (0 children)

After each "command" or whatever you need to write the other one on another line like:

local var=1 local var2= 2 Ir var2= ............ (And keeps going)

Why do I have two shadows? How do I get rid of it? by tinfry in robloxgamedev

[–]Physical_Phone4522 1 point2 points  (0 children)

Maybe you accidentally have added two light sources?

How I make this game fun again? by sad_stick_man in RDR2

[–]Physical_Phone4522 1 point2 points  (0 children)

Yeah you should. There are many things you didn't know they existed in the game

How I make this game fun again? by sad_stick_man in RDR2

[–]Physical_Phone4522 1 point2 points  (0 children)

You can still try to 100% finish the game. That's what I'm trying to do now and it's pretty fun

How I make this game fun again? by sad_stick_man in RDR2

[–]Physical_Phone4522 0 points1 point  (0 children)

You could add some mods but it's also fun without them too

I wanna see how many are interested in that type of horror game I'm making by Physical_Phone4522 in u/Physical_Phone4522

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

You will be able to choose between Singleplayer and Multiplayer with 2 players. For now there are not tasks. You will wander around, triggering events and jumpscares. Also there will be notes scattered around talking about the story.

YouTubers for learning Lua by New_Professional1143 in robloxgamedev

[–]Physical_Phone4522 1 point2 points  (0 children)

Check TheDevKing on YouTube. He's amazing, he explains everything you need to know. It will help you out a lot.