Bloxy Kart - Build Mode API
Here, you can learn everything for Bloxy Kart Build Mode.
You can run anything inside of game.Workspace, workspace, and Lighting. Anything else will not work, which is why we created this API.
BuildModeService
BuildModeService is the Folder inside of Workspace with all the Events, and Functions. If you know Roblox Lua, think of it like game
, but not specified yet.
To access BuildModeService, simply type this code inside of the Run Code box
local BuildModeService = workspace.BuildModeService
Message
This is a RemoteEvent. You will need to specify the player’s instance, unless you are doing :FireAllClients()
Messages are messages that appear on the players screen.
Parameters | Description | Type |
---|---|---|
Player | The Player Object (Do not add if you are doing :FireAllClients()
|
Instance Player |
Message | The message that you want to run | String |
Code Examples:
:FireClient()
Method
BuildModeService.Message:FireClient(game.Players.WEcompany, "You are half way done! Keep going!")
:FireAllCleints()
Method
BuildModeService.Message:FireAllClients("WEcompany is half way done with the race. ")