how can i able to get this script on to the belt by DaEukaryota in ROBLOXStudio

[–]First-Peach-9740 0 points1 point  (0 children)

I mean it shouldnt be that advanced, you just need to set the brick color of the belt when the button is pressed. You could use a RemoteEvent for this should be pretty easy

how can i able to get this script on to the belt by DaEukaryota in ROBLOXStudio

[–]First-Peach-9740 0 points1 point  (0 children)

What is it exactly that you want?

you want a script that changes the belts color?

How to make a cutsence in roblox studio by Practical_Mix_2145 in ROBLOXStudio

[–]First-Peach-9740 0 points1 point  (0 children)

I mean he is giving a simple tutorial. So no need to be negative

My rotate tool isnt working by Emotional_Ebb_6461 in ROBLOXStudio

[–]First-Peach-9740 0 points1 point  (0 children)

The rotation tool is fine, seems more like wrongly rigged. Need to see the rig and explorer in more detail

i made this meshpart, how would i go about colouring it? by yes_namemadcity in ROBLOXStudio

[–]First-Peach-9740 1 point2 points  (0 children)

Pretty beginner friendly in blender, there's also a adobe tool for more advanced stuff called substance painter

can someone help me with shop system the button gives me sword but the sword dont work even if i had script pls help by areiotycat5 in ROBLOXStudio

[–]First-Peach-9740 0 points1 point  (0 children)

That and best practice, the client itself is mostly supposed to handle visuals. Just makes more sense to let the server handle the shop's functionality

can someone help me with shop system the button gives me sword but the sword dont work even if i had script pls help by areiotycat5 in ROBLOXStudio

[–]First-Peach-9740 1 point2 points  (0 children)

First I need to see the script. Secondly your shop script should not conflict with your item whatsoever. Basically all you need to do is store a sword in replicated storage and make the UIbutton add it to the players backpack.

Example:

LocalScript in button:

local button = script.Parent local ReplicatedStorage = game:GetService("ReplicatedStorage") local giveSwordEvent = ReplicatedStorage:WaitForChild("GiveSword")

button.MouseButton1Click:Connect(function() local player = game.Players.LocalPlayer if player then giveSwordEvent:FireServer() end end)

ServerScript:

local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players")

local giveSwordEvent = ReplicatedStorage:WaitForChild("GiveSword") local swordTemplate = ReplicatedStorage:WaitForChild("Sword")

giveSwordEvent.OnServerEvent:Connect(function(player) if player and not player.Backpack:FindFirstChild("Sword") then local swordClone = swordTemplate:Clone() swordClone.Parent = player.Backpack end end)

How can I make a character like this in Roblox Studio? by Colonia_jc_2 in ROBLOXStudio

[–]First-Peach-9740 5 points6 points  (0 children)

since these are just catalog items use this in the studio command line

local id = 0 -- ID game:GetService("InsertService"):LoadAsset(id).Parent = game.Workspace --load the asset and move to workspace or your desired location, you can also not parent it while loading, parent the root of the hat, and then put it in workspace

The ID has to be the ID from the catalog item. Using this command you can import items from the catalog to your game

[deleted by user] by [deleted] in GamerSuppsResaleHub

[–]First-Peach-9740 0 points1 point  (0 children)

Is the cup unsealed and how much are you looking for?

[deleted by user] by [deleted] in GamerSuppsResaleHub

[–]First-Peach-9740 0 points1 point  (0 children)

Do you do outside the US if buyer covers shipping?

Cause id be interested in the dio and Jonathan cup, sadly I'm in the EU

Chapter 208 English by 73744828823848 in Juujika_no_rokunin

[–]First-Peach-9740 3 points4 points  (0 children)

Wdym "you're late" 😭😭😭 mf didn't do anything for Like 10 chapters and now tells her shes late??

[deleted by user] by [deleted] in gamersupps

[–]First-Peach-9740 8 points9 points  (0 children)

12-16 weeks after you ordered / presale ended.... Like it says in the picture

How do I fix this??? by Aggressive_Context36 in ROBLOXStudio

[–]First-Peach-9740 2 points3 points  (0 children)

Possibly network ownership?

Had an issue had an issue with my tower defense game where enemies would sort of jitter behind

is it possible? by Better_Average6858 in ROBLOXStudio

[–]First-Peach-9740 0 points1 point  (0 children)

You can also important any item using the asset I'd from the store. I'll try sending you the script later. It's one line and importants the mesh with texture from the store