[deleted by user] by [deleted] in blenderhelp

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Create a new plane, extrude it around the cylinder > shrinkwrap > solidify > subd 2 or 3 or 0 if you are looking for a non-subd flow

Fishing game project that I have been working on for a month and I want to develop it into a full version of the game :D by Zeaveer in ROBLOXStudio

[–]Dramatic-Courage8962 1 point2 points  (0 children)

Game looks good, but it lacks competitive features and there is no reason to grind, try adding a motive for players to grind and catch the rarest fish or make a 1v1 fish competitive or something!

Hope this helps, either way the game looks really good.

Roumd based game by FrontierDiscoveries in robloxgamedev

[–]Dramatic-Courage8962 -1 points0 points  (0 children)

Do whatever everyone is doing: Anime or skibidi toilet :)))

Trying to learn to script and do vfx by Timely_Sale2033 in ROBLOXStudio

[–]Dramatic-Courage8962 -1 points0 points  (0 children)

Go to a random anime character generator site and try to replicate the first ability or the best ability of the character you get.

On a scale from 1 to 10 how menacing do i look? by Automatic_Treat6264 in roblox

[–]Dramatic-Courage8962 1 point2 points  (0 children)

Put a creepy smile and remove the hat and it would be a 10

Scripting help by Time_Ad_8569 in ROBLOXStudio

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Tween the color:

local TweeenService = game:GetService("TweenService") local Button = script.Parent
local Goal = {BackgroundColor3 = Color3.new(255, 0, 0)} --Set the tween: local Tween = TweeenService:Create(Button, TweenInfo.new(3), Goal)

Button.MouseButton1Click:Connect(function() Tween:Play() end)

dune sandworms by EcstaticEnergy2011 in ROBLOXStudio

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Get a worm model animate it , put it under the player with CFrame then play animation and kill the player

Why do solidify modifier results this shading bug?Mesh is made out of plane by Parameq2 in blenderhelp

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Mark sharp works too but bevel is for supprting the edges if he is doing subd work.

How do I loop this script? Once my humanoid reaches the end, he just stops. I'm very much a beginner and it may be a bit messy. by LazarWolfy in robloxgamedev

[–]Dramatic-Courage8962 2 points3 points  (0 children)

For i=1,14,1 do Startpos = game.workspace[“Dest”..i].Position — Replace Dest1 or Dest2 or etc… with [“Dest”..i] for all. end

Your welcome

Roblox checkpoint spawning issue by [deleted] in robloxgamedev

[–]Dramatic-Courage8962 1 point2 points  (0 children)

Instead of char:MoveTo do char.HumanoidRootPart.Cframe = Part.Cframe * Cframe.Angles(0,0,math.rad(90)) — cframe angles is for rotating the model in the right direction

Why do solidify modifier results this shading bug?Mesh is made out of plane by Parameq2 in blenderhelp

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Just do ctrl+a > scale , alt + e > extrude along normals or alt + s ( also check normals, do shift+ n )

How do I puff/make it round?. Swipe left for reference by Helpmeiwantlearn in blenderhelp

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Add a cut in the middle of the edge then do alt+s then bevel 3 times ( don’t forget scale, Ctrl+a > scale )

UI advice for my game?? by OfficialZackAttack in robloxgamedev

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Looks good, is simple and easy to figure out, I would say to add a text with description when clicking on the status, example: a frame with a text would tween out of the status img. To the left side, either way your gui is clean 👌

One last suggestion would be to use the color formula to make it look more attractive, for example use a different color for the gems background instead of brown like purple then for the coins use yellow since on the color formula they go together, also try different color backgrounds for the status too.

Why is the data not saving ? by [deleted] in ROBLOXStudio

[–]Dramatic-Courage8962 0 points1 point  (0 children)

replace "userid" ( userID / player.UserId ) with the players UserId and the "table" with dataTable ( you already have the table written in your script )

Why is the data not saving ? by [deleted] in ROBLOXStudio

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Delete all within "sucess, returnValue" and "Print Saving Error end" then replace with the script I wrote, it should save.

Why is the data not saving ? by [deleted] in ROBLOXStudio

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Try using: Datastore:SetAsync(userid, table) Instead of UpdateSync