Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

-4 votes
0 answers
79 views

I am currently trying to develop a Roblox game;, would somebody be able to help me with locate a module?

This is a module script, it is in ServerScriptService: local PlayerDataHandler = {} local dataTemplate = { Race = "", Cash = 0, Inventory = {}, Level = 0, } local ...
Sergei Ivlev's user avatar
0 votes
0 answers
29 views

Having an issue with server-sided overhead healthbar gui in Roblox

So when I run the game, the code does nothing. I want it to be above every player's head and I want all the players to have the ability to see one another's health Here is the code: game.Players....
Ministry Ray21's user avatar
0 votes
0 answers
217 views

Roblox Server-Script to teleport all players to a random seat not working

Here's the code game.Players.PlayerAdded:Connect(function(player) local char = player.Character or player.CharacterAdded:Wait() local spawns = workspace:WaitForChild("TruckTweenPart1")....
Ministry Ray21's user avatar
0 votes
2 answers
52 views

Having an issue with a teleporting function on Roblox

The code is: local function Teleport(TeleportPos) for i, Players in pairs(game.Players:GetPlayers)) do Players.Character:FindFirstChild(“HumanoidRootPart”).CFrame = TeleportPosition end end ...
Ministry Ray21's user avatar